当前位置: 技术问答>linux和unix
移动文件时出现 Directory not empty错误是什么意思?
来源: 互联网 发布时间:2016-08-04
本文导语: 在ubuntu上装firefox 3.6 按网上说的,解压以后用 mv命令把文件夹移至usr/lib,但是好像没办法移动: sudo mv -fi firefox /usr/lib mv: overwrite `/usr/lib/firefox'? y mv: cannot move `firefox' to `/usr/lib/firefox': Directory not empty 有什么...
在ubuntu上装firefox 3.6
按网上说的,解压以后用 mv命令把文件夹移至usr/lib,但是好像没办法移动:
sudo mv -fi firefox /usr/lib
mv: overwrite `/usr/lib/firefox'? y
mv: cannot move `firefox' to `/usr/lib/firefox': Directory not empty
有什么解决方案吗?
按网上说的,解压以后用 mv命令把文件夹移至usr/lib,但是好像没办法移动:
sudo mv -fi firefox /usr/lib
mv: overwrite `/usr/lib/firefox'? y
mv: cannot move `firefox' to `/usr/lib/firefox': Directory not empty
有什么解决方案吗?
|
楼上说的可以实现
你也可以用cp实现 然后把本目录的删除
#sudo cp -R firefox /usr/lib
#sudo rm -rf firefox
你也可以用cp实现 然后把本目录的删除
#sudo cp -R firefox /usr/lib
#sudo rm -rf firefox
|
在linux下 要进行删除 或者覆盖的操作时 最好先备份一下
要不然新的万一安装不好 旧的也不好用了
要不然新的万一安装不好 旧的也不好用了