我刚刚下载并准备安装基于本网站。
这是我尝试安装时出现的情况:
$ dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb
(Reading database ... 200359 files and directories currently installed.)
Preparing to unpack oracle-xe_10.2.0.1-1.0_i386.deb ...
You have insufficient diskspace in the destination directory (/usr/lib) to install Oracle Database 10g Express Edition.
The installation requires at least 1.5 GB free on this disk.
dpkg: error processing archive oracle-xe_10.2.0.1-1.0_i386.deb (--install):
subprocess new pre-installation script returned error exit status 1
Errors were encountered while processing:
oracle-xe_10.2.0.1-1.0_i386.deb
我读到安装的要求是/usr/lib
目录上需要有 1.5GB 的可用空间,而我的上面写的是 1.6GB 的可用空间。
有没有办法将它安装在不同的磁盘上(/usr/lib
)?如果没有,如何释放一些空间?
顺便说一下,我是 ubuntu 新手,一个月前开始使用它(另一边仍然有 Windows)。
根据 muru 的要求,以下是 df -h 和 lsblk image link 的输出:http://s16.postimg.org/ubzkueybp/askubuntu.png
答案1
要释放系统中的一些空间,请尝试以下操作:
- 删除不需要的包:
sudo apt-get autoremove --purge
- 删除不需要的包的缓存安装程序:
sudo apt-get autoclean
如果这还不够的话:
- 删除文件夹的内容
/var/log/
:sudo rm -rf /var/log/*