A. linux可以做windows操作系统的域控制器么
windows里的进程/线程是继承自OS/2的。在windows里,"进程"是指一个程序,而"线程"是一个"进程"里的一个执行"线索"。从核心上讲,windows的多进程与Linux并无多大的区别,在windows里的线程才相当于Linux的进程,是一个实际正在执行的代码。
B. Linux下远程Windowslinux怎么远程windows
装对应系统的远程控制软件,我是用向日葵的,题主你可以用用看。
网络搜索向日葵远程控制,这个是专门用来进行远控的,去他们官网注册个账号。给你要用来控制的设备安装主控端(Linux、windows、安卓苹果手机皆可),被控制的设备安装被控端(其它都行,苹果不能被控制),两台设备上都登录好注册号的那同一个账号,软件可以识别出来,然后根据软件的提示一步一步进行连接的操作,其实也就是输入个主机用户名加开机密码这样的难度,很简单的。
完成之后就可以远程控制了。
安装时一定要注意区分主控端和客户端,当然如果你需要两台设备互相控制,那么每台设备都要装主控端及客户端。
C. linux远程重启windows
安装步骤:
1、进入链接下载最新 OpenSSH-Win64.zip(64位系统),解压至C:Program FilesOpenSSH
2、打开cmd,cd进入C:Program FilesOpenSSH(安装目录),执行命令:
powershell.exe -ExecutionPolicy Bypass -File install-sshd.ps1
3、设置服务自动启动并启动服务:
sc config sshd start= auto
net start sshd
到此服务已经安装完毕,默认端口一样是22,默认用户名密码为Window账户名和密码,当然防火墙还是要设置对应端口允许通讯
修改设置:
通常linux下会修改ssh_config文件来修改ssh配置,但在安装目录并没有发现这个文件,查阅官方wiki后发现,原来是在C:ProgramDatassh目录下(此目录为隐藏目录)
端口号:Port 22
密钥访问:PubkeyAuthentication yes
密码访问:PasswordAuthentication no
空密码:PermitEmptyPasswords no
然后进入C:Users账户名.ssh目录,创建authorized_keys公钥文件(也可在ssh_config修改路径)(仅限7.7之前版本,7.9版本请看最后更新)
设置完成后重启sshd服务,接下来就可以使用Xshell等工具使用密钥连接了~
踩过的坑:
命令行不识别空格时:C:Program Files用C:Progra~1替代
Windows Service2012R2即使配置了.ssh/authorized_keys公钥,连接时依然显示没有注册公钥。。。
查阅了官方wiki判断可能是权限问题:Fix SSH file permissions
进入C:Program FilesOpenSSH(安装目录),右键 FixHostFilePermissions.ps1【使用PowerShell运行】,命令行提示全选是,重启sshd服务后密钥连接正常
2019.5.17更新:
新部署服务器的时候,发现公钥无法注册,发现新版本有变动:
执行的命令为:
D. linux怎么远程控制windows7系统的电脑
在实际工作中,桌面系统用的最多还是Windows,怎么在Linux桌面远程控制Windows系统呢。
现在通过rdesktop软件就能方便的远程控制。。。首先要安装这个软件。
我的linux系统:Redhat enterprise linux 5
下面我们来安装rdesktop软件:
[root@Wang Server]# rpm -ivh rdesktop-1.4.1-4.i386.rpm
[root@Wang Server]# rdesktop --help
rdesktop: invalid option -- -
rdesktop: A Remote Desktop Protocol client.
Version 1.4.1. Copyright (C) 1999-2005 Matt Chapman.
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
-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 连接后显示的位色,比如有8位色,16位色,24位色
-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|off|remote]': enable sound redirection
remote would leave sound on server
-0: attach to console
-4: use RDP version 4
-5: use RDP version 5 (default)
[root@Wang Server]# rdesktop -u administrator 192.168.0.196
现在已经成功连接到192.168.0.196那台机子上。。。。。
E. linux怎么远程windows桌面
1,LINUX下:debian:~#1
apt-get
install
rdesktop
或
1
yum
-y
install
rdesktop
2,windows下启用远程桌面连接
3,使用方法:
debian:~#
rdesktop
-f
-a
16
192.168.0.2
-f表示全屏显示,-a
16表示使用16
bit色,192.168.0.2是Windows服务器地址。
F. linux怎么远程windows
现在大部分企业都是启用liunx或者乌班图等liunx的操作系统作为核心服务器,但是绝大多是的桌面系统使用的是window系统。
在管理方面,作为网管,是经常使用远程连接的。那么如何用linux连接window的桌面。fedora或rhelcentos等连接windows的远程桌面的方法常见的有以下两种:
第一种方法:krdc
:
一般可以在菜单中找到,也可以在命令行界面中直接输入krdc
后回车,在弹出的窗口中使用rdp协议,填好windows主机ip或主机名,即可连接到相应的windows的远程桌面上。
第二种方法:rdesktop
主机名或ip:端口
-u用户名
-p密码
-g
1024x768
-r
sound:local
empire
cms,phome.net。
G. 如何在Windows下使用Linux操作系统
虚拟机的话 如果第一次使用的话 步骤还是蛮多的 楼主的情况可以使用wubi安装ubuntu 或者是国人做的基于ubuntu的deepinlinux 就是深度做的Linux
下载ubuntu或者deepinLinux的ISO文件 解压就会看到wubi程序了
wubi
Wubi让你如同Windows操作系统里的其他软件一样安装卸载Ubuntu,如果你只是听说过Linux或者Ubuntu,如果你想尝试一下但是却害怕复杂的操作或者影响你娇贵的Windows的话,Wubi很适合你。你需要做的只是点击几下鼠标而已。不需要改变分区设置,不需要启动文件,不需要Live CD的光盘启动。
Wubi安装方式不会给你的Windows带来任何改变,但是不同的是它提供完整的硬件接入,你还可以如同Ubuntu中下载,安装和使用应用程序。Wubi会把大部分文件储藏在Windows下的一个文件夹内(大多是Ubuntu文件夹),你可以随时在控制面板中卸载他们。
H. linux怎么远程操作windows中的文件
你指的是远程桌面还是什么?如果远程windows是网站服务器,直接用rdesktop,可以在linux下操作windows,如果不是服务器,可以使用teamview,个人使用是免费的。
I. linux下远程控制win的最佳方法是什么
teamview 不知道有没有linux版。。
我用的是ubuntu remmia remote desktop client 效果还好
其实你可以在Opensuse13.2弄个虚拟机 装个win
J. linux命令行模式怎么远程windows
1.安装ssh服务 (SSH 为建立在应用层基础上的安全协议。SSH 是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议)
2.打开命令行窗口,使用ssh远程连接(win+r,输入cmd) 命令输入的格式为:ssh [email protected] 这里的ssh是告诉系统,我要启用ssh命令..