Linux Windows Remote Management Detailed procedures Rdesktop

#rpm -q rdesktop // Find has been installed

         #yum install rdesktop // use yum install

         rdesktop simple to use, windows and does not pretend to be the server, open Remote Desktop Sharing is put on the line

Specific use to open the first terminal, and enter the following:

rdesktop -u yournape -p password -g 1024*720 192.168.0.2   

rdesktop command using a remote desktop connection;

-u user name, yourname targeted at the client's user name;

-p client user's password;

-g Specifies the screen size -g 800 * 600 + 0 + 0 this '+0' is, is the location that appears on your linux you this window;

192.168.0.1 IP address of the target client

Example:

[root@Centos5 ~]# rdesktop -u aixi -p d337448 -r clipboard:PRIMARYCLIPBOARD -r disk:centos=/root -r sound:local -z -a 16 10.26.11.72

         $ Rdesktop 192.168.1.1 // open an 8-bit color,

$ Rdesktop -a 16 192.168.1.1 // This is the 16-bit color, and looks much better

$ Rdesktop -u administrator -p ****** -a 16 192.168.1.1 // landed directly

$rdesktop -u administrator -p ****** -a 16 -r sound:local 192.168.1.1

Plus -r sound: local voice can also engage in over the role of -r lot can be redirected many things, it will help to look at a lot of harvest.

-r comport: COM1 = / dev / ttyS0 // SIO / dev / ttyS0 COM1 redirect

-r comport: COM1 = / dev / ttyS0, COM2 = / dev / ttyS1 // plurality of serial redirector

-r disk: floppy = / mnt / floppy // the / mnt / floppy redirection for remote shared disk 'floppy'

-r disk: floppy = / mnt / floppy, cdrom = / mnt / cdrom, root = /, c = / mnt / c // redirect multiple disks

-r clientname = // to redirect the client to display the name of the disk set

-r lptport: LPT1 = / dev / lp0 // parallel port / dev / lp0 redirect LPT1

-r lptport: LPT1 = / dev / lp0, LPT2 = / dev / lp1 // plurality of parallel redirection

-r printer: mydeskjet // printer redirection

-r printer: mydeskjet = "HP LaserJet IIIP" // printer redirection

-r sound: [local | off | remote] // sound redirection

-r clipboard: PRIMARYCLIPBOARD: this must be added, otherwise Windows can not copy and paste text directly in the host server and Solaris. Stickers Chinese no problem.

-r disk: sunway = / home / jianjian: a directory on the specified host Solaris (/ home / jianjian) is mapped to the hard drive (drive letter is sunway) on a remote Windows, will not need to transfer files on the FTP or Samba.

-f: full screen, exit full screen: ctrl + alt + enter Ctrl + Alt + Enter again to enter full-screen again

-D: do not display the title bar, with -g better use of screen space;

-K: This option Description to keep window manager key bindings combination;

-z: Start network data compression to reduce bandwidth local area network no effect;

Tip: If your local Chinese file name garbled words on a remote machine, you probably have not installed encoding conversion library, or you install the code conversion libraries can not run properly.

Guess you like

Origin www.cnblogs.com/fanweisheng/p/11109447.html