CentOS7的日常使用
目录常用操作1. 共享文件夹(centos7虚拟机和Windows之间)网络常用操作1. 共享文件夹(centos7虚拟机和Windows之间)VMware设置centos7共享文件夹https://blog.csdn.net/nesxiaogu/article/details/85274626https://www.cnblogs.com/skyheaving/p/12286513.html操作
目录
常用操作
1.1 共享文件夹(VMware的CentOS7虚拟机和Windows之间)
VMware设置centos7共享文件夹
https://blog.csdn.net/nesxiaogu/article/details/85274626
https://www.cnblogs.com/skyheaving/p/12286513.html
操作如下:
1、
在VMware上设置共享文件夹
我设置的是 C:\Users\WHaoL\Desktop\csapp\code
挂载名为 code
2、
把Windows上的code文件夹,挂载到虚拟机的/mnt/hgfs目录下
[root@lwh ~]# vim /etc/fstab
文件尾,重启新的一行,添加如下内容,保存退出
.host:/code /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0
3、
使用mount -a指令让刚刚写入的挂载信息立即生效
可以看到已经挂载成功(操作如下:)
[root@lwh mnt]# mount -a
[root@lwh mnt]# cd hgfs/
[root@lwh hgfs]# ls
4 C++Premier5Ed DataStructure_C DataStructure_C++ DataStructure_LeetCode DataStructure_ZJU
[root@lwh hgfs]#
1.1 共享文件夹(VirtualBox的Manjaro-XFCE虚拟机和Windows之间)
只需在VirtualBox上设置一下就可以了,超方便!
1.1 共享文件夹(VirtualBox的CentOS7_Mini_1810虚拟机和Windows之间)
我不想虚拟机太臃肿就没设置,只使用了ssh互传文件。
参考:
http://f.dataguru.cn/thread-456235-1-3.html
https://blog.csdn.net/qq_15282563/article/details/52403761
1.2 VScode SSH连接虚拟机
配置 config ssh_config
# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host 192.168.50.122
HostName 192.168.50.122
User root
# CentOS7_lwh
Host 192.168.50.94
HostName 192.168.50.94
User root
# IdentityFile "/root/.ssh/id_rsa"
# IdentityFile "/root/.ssh/authorized_keys/id_rsa"
1.3 当多台虚拟机软件,运行多个linux时,局域网怎么设置
我的Windows下的环境:
- VirtualBox下运行Manjaro-XFCE
- VMware下运行CentOS7
第一步:先利用VMware设置局域网的网络,步骤如下:
1、打开:VMware --> 编辑 —> 虚拟机网络编辑(N)
2、
3、
第二步:分别设置各个虚拟机的网络模式
1、VMware下运行CentOS7
2、VirtualBox下运行Manjaro-XFCE
第三步、重启网络,并,SSH连接
1、VMware的CentOS7
重启
查看IP
SSH连接
2、VirtualBox下运行Manjaro-XFCE
重启
查看IP
SSH连接
更多推荐
所有评论(0)