常用操作



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下的环境:

  1. VirtualBox下运行Manjaro-XFCE
  2. 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连接

在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐