virtualbox共享文件夹设置

宿主机是mac os,虚拟机是centos7.9。

一、virtualbox设置共享文件夹

选中虚拟机->设置->共享文件夹->点击+号图标进行添加:

二、给虚拟机安装增强功能

打开virtualbox的虚拟机窗口界面,点击窗口顶部菜单中的设备->安装增强功能:

如果提示:

Could not mount the media/drive '/Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso' (VERR_PDM_MEDIA_LOCKED).

也可以自己手动添加,打开虚拟机设置:

三、在虚拟机里安装增强功能

进入centos7.9,将光盘mount到本地目录下:

mkdir -p /mnt/cdrom

mount /dev/cdrom /mnt/cdrom

安装增强功能前,需要安装一些系统依赖:

yum install bzip2 gcc make

yum install kernel-devel-$(uname -r)

然后开始安装增强功能:

work@localhost mnt\]$ cd cdrom \[work@localhost cdrom\]$ ll 总用量 47310 -r--r--r--. 1 root root 763 2月 20 2020 AUTORUN.INF -r-xr-xr-x. 1 root root 6384 3月 22 2022 autorun.sh dr-xr-xr-x. 2 root root 792 3月 22 2022 cert dr-xr-xr-x. 2 root root 1824 3月 22 2022 NT3x dr-xr-xr-x. 2 root root 2652 3月 22 2022 OS2 -r-xr-xr-x. 1 root root 4821 3月 22 2022 runasroot.sh -r--r--r--. 1 root root 592 3月 22 2022 TRANS.TBL -r--r--r--. 1 root root 4033829 3月 22 2022 VBoxDarwinAdditions.pkg -r-xr-xr-x. 1 root root 3949 3月 22 2022 VBoxDarwinAdditionsUninstall.tool -r-xr-xr-x. 1 root root 7505330 3月 22 2022 VBoxLinuxAdditions.run -r--r--r--. 1 root root 9445376 3月 22 2022 VBoxSolarisAdditions.pkg -r-xr-xr-x. 1 root root 17047696 3月 22 2022 VBoxWindowsAdditions-amd64.exe -r-xr-xr-x. 1 root root 270840 3月 22 2022 VBoxWindowsAdditions.exe -r-xr-xr-x. 1 root root 10116464 3月 22 2022 VBoxWindowsAdditions-x86.exe -r--r--r--. 1 root root 259 10月 4 2021 windows11-bypass.reg 用root权限执行其中的VBoxLinuxAdditions.run文件: sudo sh VBoxLinuxAdditions.run Copying additional installer modules ... Installing additional modules ... VirtualBox Guest Additions: Starting. VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel modules. This may take a while. VirtualBox Guest Additions: To build modules for other installed kernels, run VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup \ VirtualBox Guest Additions: or VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all VirtualBox Guest Additions: Building the modules for kernel 3.10.0-1160.el7.x86_64. VirtualBox Guest Additions: Running kernel modules will not be replaced until the system is restarted 按安装成功的提示,重启系统。 **四、访问共享文件夹** 自动加载的目录是 /media,共享文件夹的命名为sf_{共享文件夹名称},其中的共享文件夹名称是在第一步设置的。 \[work@localhost \~\]$ ll /media/ 总用量 0 drwxr-x---. 2 root root 6 9月 17 05:18 sf_code

相关推荐
Johny_Zhao1 天前
OpenClaw安装部署教程
linux·人工智能·ai·云计算·系统运维·openclaw
chlk1233 天前
Linux文件权限完全图解:读懂 ls -l 和 chmod 755 背后的秘密
linux·操作系统
舒一笑3 天前
Ubuntu系统安装CodeX出现问题
linux·后端
改一下配置文件3 天前
Ubuntu24.04安装NVIDIA驱动完整指南(含Secure Boot解决方案)
linux
深紫色的三北六号3 天前
Linux 服务器磁盘扩容与目录迁移:rsync + bind mount 实现服务无感迁移(无需修改配置)
linux·扩容·服务迁移
SudosuBash3 天前
[CS:APP 3e] 关于对 第 12 章 读/写者的一点思考和题解 (作业 12.19,12.20,12.21)
linux·并发·操作系统(os)
哈基咪怎么可能是AI4 天前
为什么我就想要「线性历史 + Signed Commits」GitHub 却把我当猴耍 🤬🎙️
linux·github
十日十行4 天前
Linux和window共享文件夹
linux
木心月转码ing5 天前
WSL+Cpp开发环境配置
linux
崔小汤呀6 天前
最全的docker安装笔记,包含CentOS和Ubuntu
linux·后端