文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Linux如何实现远程控制

2023-06-28 01:23

关注

小编给大家分享一下Linux如何实现远程控制,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

Linux一般作为服务器使用,而服务器一般放在机房,你不可能在机房操作你的Linux服务器这时我们就需要远程登录到Linux服务器来管理维护系统。

Linux如何实现远程控制

从192.168.10.5这台机登录到192.168.10.16这台机上,可以在192.168.10.16做一些操作,比如拷贝文件。

192.168.10.5

[root@localhost ~]# cd /tmp[root@localhost tmp]# ifconfigens32: flags=4163  mtu 1500       inet 192.168.10.5  netmask 255.255.255.0  broadcast 192.168.10.255       inet6 fe80::20c:29ff:fe84:eae5  prefixlen 64  scopeid 0x20       ether 00:0c:29:84:ea:e5  txqueuelen 1000  (Ethernet)       RX packets 113798033  bytes 13848840312 (12.8 GiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 89922573  bytes 134234526128 (125.0 GiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73  mtu 65536       inet 127.0.0.1  netmask 255.0.0.0       inet6 ::1  prefixlen 128  scopeid 0x10       loop  txqueuelen 1  (Local Loopback)       RX packets 168  bytes 14260 (13.9 KiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 168  bytes 14260 (13.9 KiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0[root@localhost tmp]# ls[root@localhost tmp]# pwd/tmp

192.168.10.16

[root@localhost ~]# cd /tmp[root@localhost tmp]# ifconfigens32: flags=4163  mtu 1500       inet 192.168.10.16  netmask 255.255.255.0  broadcast 192.168.10.255       inet6 fe80::20c:29ff:fe62:fcc4  prefixlen 64  scopeid 0x20       ether 00:0c:29:62:fc:c4  txqueuelen 1000  (Ethernet)       RX packets 20886  bytes 7480105 (7.1 MiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 10471  bytes 7083155 (6.7 MiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73  mtu 65536       inet 127.0.0.1  netmask 255.0.0.0       inet6 ::1  prefixlen 128  scopeid 0x10       loop  txqueuelen 1  (Local Loopback)       RX packets 580  bytes 49312 (48.1 KiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 580  bytes 49312 (48.1 KiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0[root@localhost tmp]# lsPHP.gif  test  timestamp.txt  程序员等级判别.jpg  背锅.gif  重启.jpg[root@localhost tmp]# pwd/tmp

从192.168.10.5登录到192.168.10.16

[root@localhost tmp]# ssh root@192.168.10.16root@192.168.10.16's password:Last login: Wed Jun 19 22:12:56 2019 from 192.168.10.5[root@localhost ~]# ifconfigens32: flags=4163  mtu 1500       inet 192.168.10.16  netmask 255.255.255.0  broadcast 192.168.10.255       inet6 fe80::20c:29ff:fe62:fcc4  prefixlen 64  scopeid 0x20       ether 00:0c:29:62:fc:c4  txqueuelen 1000  (Ethernet)       RX packets 21050  bytes 7495118 (7.1 MiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 10554  bytes 7095520 (6.7 MiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73  mtu 65536       inet 127.0.0.1  netmask 255.0.0.0       inet6 ::1  prefixlen 128  scopeid 0x10       loop  txqueuelen 1  (Local Loopback)       RX packets 580  bytes 49312 (48.1 KiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 580  bytes 49312 (48.1 KiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

从192.168.10.16拷贝文件到192.168.10.5

[root@localhost ~]# cd /tmp[root@localhost tmp]# lsPHP.gif  test  timestamp.txt  程序员等级判别.jpg  背锅.gif  重启.jpg[root@localhost tmp]# scp 程序员等级判别.jpg root@192.168.10.5:/tmpThe authenticity of host '192.168.10.5 (192.168.10.5)' can't be established.ECDSA key fingerprint is 60:aa:a7:f2:b2:bb:24:d4:31:50:2a:4f:50:82:e0:80.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added '192.168.10.5' (ECDSA) to the list of known hosts.root@192.168.10.5's password:程序员等级判别.jpg                                100%   12KB  12.1KB/s   00:00    [root@localhost tmp]# exit #退出远程登录logoutConnection to 192.168.10.16 closed.[root@localhost tmp]# ifconfig #确认已经回到192.168.10.5ens32: flags=4163  mtu 1500       inet 192.168.10.5  netmask 255.255.255.0  broadcast 192.168.10.255       inet6 fe80::20c:29ff:fe84:eae5  prefixlen 64  scopeid 0x20       ether 00:0c:29:84:ea:e5  txqueuelen 1000  (Ethernet)       RX packets 113798588  bytes 13848904758 (12.8 GiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 89923000  bytes 134234574328 (125.0 GiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73  mtu 65536       inet 127.0.0.1  netmask 255.0.0.0       inet6 ::1  prefixlen 128  scopeid 0x10       loop  txqueuelen 1  (Local Loopback)       RX packets 168  bytes 14260 (13.9 KiB)       RX errors 0  dropped 0  overruns 0  frame 0       TX packets 168  bytes 14260 (13.9 KiB)       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0[root@localhost tmp]# ls#已经成功从192.168.10.16拷贝文件到192.168.10.5程序员等级判别.jpg

以上是“Linux如何实现远程控制”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-人工智能
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯