2021-05-12 14:32:11
VirtualBox實現虛擬機器中CentOS 7共用資料夾
虛擬機器:VirtualBox 版本為5.1.2
系統:CentOS 7
主機系統:Mac
安裝VirtualBox為了共用資料夾,折騰了一晚上!網上的很多資料都不是很全面,這裡就全面的總結一下,如果有其他的疑問,可以留言多多交流。
設定共用檔案路徑
點選虛擬機器 設定-->選擇 共用資料夾
(圖1 設定共用資料夾)
設定共用資料夾路徑
1 選擇路徑
2 填寫自定義的共用名稱(在後面需要與掛載路徑相對應)
3 設定自動掛載/固定分配
(圖2 設定共用檔案路徑屬性)
安裝VirtualBox增強工具
先安裝必備的包
執行下面的命令:
yum install -y gcc gcc-devel gcc-c++ gcc-c++-devel make kernel kernel-devel安裝完後,重新啟動虛擬機器:
shutdown -r now安裝virtualBox增強工具
點選 設定-->點選 安裝增強功能...
(圖3 點選設定)
自動執行安裝 或者 進入目錄/media/VBOXADDITIONS_5.1.2_108956,執行命令
./VBoxLinuxAddtion.run得到輸出內容
[root@localhost VBOXADDITIONS_5.1.2_108956]# ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.2 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.2 of VirtualBox Guest Additions...
vboxadd.sh: Stopping VirtualBox Additions.
vboxadd-service.sh: Stopping VirtualBox Guest Addition service.
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
vboxadd.sh: You should restart your guest to make sure the new modules are actually used.
vboxadd.sh: Starting the VirtualBox Guest Additions.
You may need to restart the the Window System (or just restart the guest system)
to enable the Guest Additions.即安裝成功!
掛載共用資料夾
切換到root使用者輸入掛載命令:
sudo mount -t vboxsf shared_file /home/xingoo/shared注意格式為
sudo mount -t vboxsf 共用資料夾名稱(在設定頁面設定的) 掛載的目錄
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-11/148334.htm
相關文章