-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
quick fix of header text for installs, some devops package updates, a…
…nd some documentation updates (#117) * quick fix of header text for installs * remove unused import * tick up version so that it makes it out to pipy * some more notes on rdp * more rdp notes * fix mailcap for neomutt * add onboardme to standard packages to update, and update devops packages to include smol-k8s-lab and docker
- Loading branch information
Showing
6 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
layout: default | ||
title: RDP | ||
parent: Screen Sharing | ||
permalink: /screen-sharing/rdp | ||
description: "Everything we know about RDP" | ||
--- | ||
|
||
# RDP | ||
|
||
## RDP from macOS to Debian based distros | ||
|
||
Make sure the remote ssh server supports X11. Make sure these lines are in your `/etc/ssh/sshd_config` file: | ||
|
||
```sshconfig | ||
X11Forwarding yes | ||
X11UseLocalhost yes | ||
``` | ||
|
||
Install an X11 server and an RDP client on your mac with: | ||
|
||
```bash | ||
brew install --cask xquartz | ||
brew install freerdp | ||
``` | ||
|
||
*Then you should reboot 🤷* | ||
|
||
(Xquartz provides a telnet app which sets the `$DISPLAY` variable. This is why you reboot.) | ||
|
||
|
||
Finally, you can use the freerdp client: | ||
|
||
```bash | ||
xfreerdp /u:youruser /p:yourpassword /v:hostnameoripaddr | ||
``` | ||
|
||
## References and Further Reading | ||
|
||
- [Using x11 apps in mac os x](https://medium.com/@toja/using-x11-apps-in-mac-os-x-c74b304fd128) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "onboardme" | ||
version = "0.15.14" | ||
version = "0.15.15" | ||
description = "An onboarding tool to install dot files and packages including a default mode with sensible defaults to run on most computers running Debian based distros or macOS." | ||
authors = ["Jesse Hitch <[email protected]>"] | ||
license = "AGPL-3.0-or-later" | ||
|