Virtualbox虚拟机下挂载linux共享文件夹

1、安装virtualbox增强工具。
首先检查增强工具所需的依赖包是否安装完整:

#在ubuntu中同理
yum -y update
yum -y install gcc make automake autoconf kernel-source kernel-devel kernel-headers

其次装载VBoxGuestAdditions.iso到光驱中,并且在系统中挂载改镜像。

sudo mkdir /media/cdrom
sudo mount -t iso9660 /dev/cdrom /media/cdrom
cd /media/cdrom/

最后执行VboxLinuxAdditions.run脚本。

sudo ./VboxLinuxAdditions.run

2、在设置中设置好共享文件夹,并勾选自动分配,切勿勾选自动挂载否则会报mounting failed with the error protocol error错误。

3、在linux系统中挂载该文件夹:

sudo mkdir /mnt/gongxiang
sudo mount -t vboxsf gongxiang /mnt/gongxiang

4、设置开机自动挂载。在~/.bashrc文件中添加如下脚本。

sudo mount -t vboxsf gongxiang /mnt/gongxiang

你可能感兴趣的:(linux)