博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu远程桌面客户端连接WINDOWS
阅读量:7223 次
发布时间:2019-06-29

本文共 2959 字,大约阅读时间需要 9 分钟。

hot3.png

rdesktop 是一个在 Unix/Linux 下访问 Windows 远程桌面的客户端程序。当前,rdesktop 所支持的 Windows 系列版本包括 NT、2000、XP 和 2003。通过使用 rdesktop 所实现的远程桌面协议(RDP),你可以在 Unix/Linux 系统中呈现 Windows 桌面,并进行相应的操作。

安装:

victor :~$yum install rdesktop  //命令适用于 Fedora 系统

Setting up Install Process

No package rdesktop available.

Nothing to do

victor :~$ apt-get install rdesktop    //命令针对 Debian/Ubuntu 系统,

E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)

E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?

victor :~$ sudo apt-get install rdesktop

Reading package lists... Done

Building dependency tree       

Reading state information... Done

The following NEW packages will be installed:

victor :~$ rdesktop

rdesktop: A Remote Desktop Protocol client.

Version 1.7.0. Copyright (C) 1999-2011 Matthew Chapman et al.

See http://www.rdesktop.org/ for more information.

Usage: rdesktop [options] server[:port]

   -u: user name

   -d: domain

   -s: shell

   -c: working directory

   -p: password (- to prompt)

   -n: client hostname

   -k: keyboard layout on server (en-us, de, sv, etc.)

   -g: desktop geometry (WxH)

   -f: full-screen mode

   -b: force bitmap updates

   -L: local codepage

   -A: enable SeamlessRDP mode

   -B: use BackingStore of X-server (if available)

   -e: disable encryption (French TS)

   -E: disable encryption from client to server

   -m: do not send motion events

   -C: use private colour map

   -D: hide window manager decorations

   -K: keep window manager key bindings

   -S: caption button size (single application mode)

   -T: window title

   -N: enable numlock syncronization

   -X: embed into another window with a given id.

   -a: connection colour depth

   -z: enable rdp compression

   -x: RDP5 experience (m[odem 28.8], b[roadband], l[an] or hex nr.)

   -P: use persistent bitmap caching

   -r: enable specified device redirection (this flag can be repeated)

         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1

             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1

         '-r disk:floppy=/mnt/floppy': enable redirection of /mnt/floppy to 'floppy' share

             or   'floppy=/mnt/floppy,cdrom=/mnt/cdrom'

         '-r clientname=<client name>': Set the client name displayed

             for redirected disks

         '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1

             or      LPT1=/dev/lp0,LPT2=/dev/lp1

         '-r printer:mydeskjet': enable printer redirection

             or      mydeskjet="HP LaserJet IIIP" to enter server driver as well

         '-r sound:[local[:driver[:device]]|off|remote]': enable sound redirection

                     remote would leave sound on server

                     available drivers for 'local':

                     alsa:ALSA output driver, default device: default

         '-r clipboard:[off|PRIMARYCLIPBOARD|CLIPBOARD]': enable clipboard

                      redirection.

                      'PRIMARYCLIPBOARD' looks at both PRIMARY and CLIPBOARD

                      when sending data to server.

                      'CLIPBOARD' looks at only CLIPBOARD.

   -0: attach to console

   -4: use RDP version 4

   -5: use RDP version 5 (default)

victor :~$rdesktop -f 172.27.1.6:51321

Autoselected keyboard map en-us

CTRL+ALT + enter    推出全屏

转载于:https://my.oschina.net/zhangxu0512/blog/267473

你可能感兴趣的文章
关于Linq2Sql有外键表的更新--引发的问题。
查看>>
解决linux 无法下载 oracle 官网 java的 安装包
查看>>
nodejs stream 手册学习
查看>>
go标准库的学习-strconv-字符串转换
查看>>
Beta 冲刺(7/7)
查看>>
nginx跟tp5无法加载控制器
查看>>
PHP Ctype函数
查看>>
cordova(PhoneGap)简单应用
查看>>
在Linux系统安装Nodejs 最简单步骤
查看>>
Delphi Union 使用
查看>>
apache tomcat 集群!
查看>>
一文读懂网络协议
查看>>
iOS开发小技巧--实现毛玻璃效果的方法
查看>>
bzoj 3529: [Sdoi2014]数表
查看>>
CF每日一练(2.11)
查看>>
operator ->
查看>>
react select
查看>>
JDBC 编程初步
查看>>
数据库SQL归纳(一)
查看>>
第9条:覆盖equals时总要覆盖hashCode
查看>>