ファイル/etc/xrdp/xrdp.iniに、デフォルトのxrdpアドレスであるaddress = 0.0.0.0を追加します。
また、ファイアウォールがxrdpが動作しているポート3389で接続を待機することを許可する必要があります。これを実行するには:
sudo ufw allow 3389
それでもうまくいかない場合:
- PCを再起動する
sudo ufw disable
サーバーPCのファイアウォール()を無効にしてから、再確認します(再起動が必要になる場合もあります)。
場合は、あなたがそれを逃し、私は(だった以下の手順全体一覧表示されます痛みを組み立てることを)。あなたが一歩一歩従うならそれで大丈夫です(約束!)。
OSのステップバイステップガイド間のリモートデスクトップ
わたし。WindowsとWindowsの間:
Windowsリモートデスクトップソフトウェアを使用する
II。Linux / Unixへ/どこからでも
まず、リモートデスクトップ経由で接続するサーバーコンピューターで次の操作を行います。
- Allow other users to view your desktop
- Best to require a password
- service ssh status
- To allow computers to connect with X11 graphics system capabilities as well, you need to
install an X11 server on the computer that is trying to connect (client). So
* for a Windows computer use XMing
* for a Linux Ubuntu computer use XQuartz
IIa。グラフィックスをサポートする端末からWindowsからLinuxへ
- Launch XMing on Windows client
- Launch Putty
* Fill in basic options
* Connection -> SSH -> X11
-> Enable X11 forwarding
-> X display location = :0.0
-> MIT-Magic-Cookie-1
-> X authority file for local display = point to the Xming.exe executable
第IIb。(bはより良い)GUIを完全にサポートするWindowsからLinuxへ。これは、ほとんどの人が望むものです。
- install xrdp which uses the remote desktop protocol to present a GUI to the user.
It can provide a fully functional Linux terminal server, capable of accepting connections
from rdesktop, freerdp, and Microsoft's own terminal server / remote desktop clients.
xrdp is the daemon that handles RDP remote desktop access from Windows machines to Linux
- edit the "/etc/xrdp/xrdp.ini" file to include the line:
address=0.0.0.0
right under #background=626x72 line. 0.0.0.0 is the local server address of xrdp
- Restart xrdp service
- allow xrdp port (probably 3389) through firewall
- We also need a VNC server. Install tightvncserver on Linux server machine.
- run tightvncserver (no need to create a view-only password)
- "netstat -lvp | grep vnc" to check out the ports that tightvnc is listening on for
connections
- allow the vncserver port from the firewall: sudo ufw allow #
- allow the xrdp server
- Install xfce4 desktop environment an update to xfce, minimalistic faster and lightweight
sudo apt-get install xfce4
- sudo apt-get install xfce4-terminal : way better than xterm
- sudo apt-get install gnome-icon-theme-full tango-icon-theme : installs icon sets
- Now we modify 2 files to make sure xrdp uses xfce4
* echo xfce4-session >~/.xsession
* secondly we modify startup file for xRDP located at /etc/xrdp/startwm.sh
so it will start xfce4. Replace the last line with
startxfce4
(before it had something which started with a ., but no matter whatever it is, just
replace the last line)
* restart xrdp service: sudo service xrdp restart
- Now you are ready to log into the computer from client using Remote Desktop (mstsc.exe).
Just supply the ipv4 or hostname of the VNC server.
III。* nixから/へ* nixへ
- ssh -X [preferedUserName]@[targetIpv4Address] : -X flag enales X11 forwarding
- accept security certificates from trusted hosts when prompted
IV。接続を安全にする(オプションの手順-構成に適用)
VNCおよびxrdpプロトコルは安全ではないため、暗号化されません。
接続を安全にするには、/ etc / xrdp / xrdp.iniファイルを編集して、アドレスが127.0.0.1になるようにします。これは、sshサーバーのlocalhostアドレスになります。SSH暗号化は、vncトラフィックをトンネルするためにその下で使用されます。
- sudo service xrdp restart
- sudo service ssh restart
- pkill Xtightvnc
- tightvncserver
- putty -> Connection -> SSH -> Tunnels
* Source port: 5555
* Destination: localhost:3389
上記が機能しない場合:
- 両方のコンピュータを再起動する必要があるかもしれません。
sudo ufw disable
サーバーPCのファイアウォール()を無効にしてから、再確認します(再起動が必要になる場合もあります)。
- 上記の方法が機能しない場合は、競合するパッケージをインストールして、システムをめちゃくちゃにしています。その場合は手動でトラブルシューティングを行う必要があります(手順に正しく従えば、このステップに到達することはほとんどありません)。
ソースとクレジット: