我想将testdisk安装到ubuntu10.04LTS,但是我得到了一个错误。有什么帮助吗?这是输出:
# sudo apt-get install testdisk
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
testdisk: Depends: libntfs10 (>= 2.0.0) but it is not installable
E: Broken packages我也试过:
wget http://launchpadlibrarian.net/40386584/libntfs10_2.0.0-1ubuntu4_i386.deb; sudo dpkg -i *.deb我得到了一个错误:
dpkg: error processing libntfs10_2.0.0-1ubuntu4_i386.deb (--install):
package architecture (i386) does not match system (amd64)
Errors were encountered while processing:
libntfs10_2.0.0-1ubuntu4_i386.deb发布于 2012-09-07 16:59:50
运行以下命令:
cd /tmp
sudo mkdir download
cd download
sudo wget http://ubuntu.mirror.iweb.ca//pool/main/l/linux-ntfs/libntfs10_2.0.0-1ubuntu4_amd64.deb
sudo dpkg -i *.deb
cd现在,重试安装testdisk:
sudo apt-get install testdisk注:以上说明适用于64位机.
https://askubuntu.com/questions/185154
复制相似问题