博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vbox centos-7 共享文件夹
阅读量:6846 次
发布时间:2019-06-26

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

hot3.png

# 宿主机

# 共享路径:F:\VirtualBox\shared
# 共享文件夹名称shared

# 安装编译器

$ yum clean all
$ yum update
$ yum install kernel
$ yum install kernel-devel
$ yum install kernel-headers
$ yum install gcc
$ yum install gcc-c++
$ yum install make
$ yum install bzip2
$ reboot

# 安装增强包

$ mount | grep vboxsf
$ mkdir /home/vboxsf
$ mount -t auto /dev/cdrom /home/vboxsf
$ cd /home/vboxsf
$ ls
$ sh ./VBoxLinuxAdditions.run
$ reboot

# 映射共享文件夹

$ mkdir /home/share
$ cd /home/share
$ mount -t vboxsf shared /home/share

# 实现开机挂载

$ vi ~/.bashrc
$ mount -t vboxsf shared /mnt/share

# 卸载

$ umount -f /mnt/share

转载于:https://my.oschina.net/u/3055454/blog/1605943

你可能感兴趣的文章