ATFTPD 错误:未终止的引号字符串

ATFTPD 错误:未终止的引号字符串

将 Ubuntu 从 11.04 升级到 11.10(32 位)后,我在使用 ATFTPD 时遇到了问题:

每当我启动 atftpd 时都会收到此错误:

/etc/default/atftpd: 2: Syntax error: Unterminated quoted string

每当我尝试安装/删除任何软件包(apt-get或 Ubuntu 软件中心)时,都会出现此错误:

Setting up atftpd (0.7.dfsg-10) ...

/etc/default/atftpd: 2: Syntax error: Unterminated quoted string

dpkg: error processing atftpd (--configure):

subprocess installed post-installation script returned error exit status 2

Errors were encountered while processing:

atftpd

E: Sub-process /usr/bin/dpkg returned an error code (1)

有什么想法吗?谢谢!

答案1

第一次尝试

sudo apt-get install -f

如果失败,请尝试删除该包

sudo dpkg --remove --force-all atftpd

如果失败,手动删除

cd /var/lib/dpkg/info
sudo rm -f atftpd.*

然后

sudo dpkg --remove --force-remove-reinstreq atftpd

相关内容