首頁 > 軟體

解決vmware上Ubuntu共用資料夾的問題

2022-07-11 22:03:37

解決vmware上ubuntu無法共用資料夾問題

解決vmware上ubuntu無法共用資料夾問題(ubuntu22.04)

第一步:設定共用資料夾

第二步:安裝open-vm-tools

 sudo apt install open-vm-tools*

第三步:掛載資料夾先檢視設定的資料夾有沒有起效

vmware-hgfsclient

如果出現有掛載對應的資料夾就起效

建立目錄並掛載

sudo mkdir /mnt/hgfs

手動掛載/自動掛載

手動掛載方法

但是每次重啟都得掛載一遍,比較麻煩

 sudo vmhgfs-fuse .host:/VMshare /mnt/hgfs 

自動掛載方法

sudo cp /etc/fstab /etc/fstab.bak
sudo vim /etc/fstab

在最後一行插入這樣一句

.host:/VMshare  /mnt/hgfs   fuse.vmhgfs-fuse     allow_other,defaults         0       0

VMshare是自己設定的資料夾名稱,/mnt/hgfs掛載點,fuse.vmhgfs-fuse掛載方法

最後儲存退出(先別走!)

由於設定自動掛載檔案容易設定錯誤導致系統進入emergency mode,最好要備份好fstab檔案,並且做好虛擬機器器快照,或者搜尋在emergency mode的恢復方法

然後cd到/mnt/hgfs裡就能看到共用的檔案了,有可能需要管理員許可權

如果你在此之前安裝過官方的vmtool或者舊版本的open-vm-tools最好先解除安裝乾淨

sudo vmware-uninstall-tools.pl
sudo apt-get remove open-vm-tools
sudo apt-get remove --auto-remove open-vm-tools
sudo apt-get purge open-vm-tools
sudo apt-get purge --auto-remove open-vm-tools

參考參照:

https://www.cnblogs.com/nanopeng/p/7017351.html

https://blog.csdn.net/weixin_43445661/article/details/109497763

https://blog.csdn.net/weixin_44565095/article/details/95937794

到此這篇關於解決vmware上Ubuntu共用資料夾的問題的文章就介紹到這了,更多相關vmware Ubuntu共用資料夾內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com