我刚刚下载并准备安装基于本站的甲骨文特快版10g。
当我试图安装它时,就会出现这样的情况:
$ 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新来的,一个月前我就开始使用它了(在另一边还有窗户)。
按照muru的要求,下面是df -h和lsblk映像链接的输出:http://s16.postimg.org/ubzkueybp/askubuntu.png
发布于 2015-04-24 13:04:49
要在系统中释放一些空间,请尝试如下:
sudo apt-get autoremove --purge
sudo apt-get autoclean
如果这还不够:
/var/log/
文件夹的内容:sudo rm -rf /var/log/*
https://askubuntu.com/questions/613075
复制相似问题