K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / lib / recovery-mode / options /
server ip : 172.67.156.115

your ip : 172.70.127.62

H O M E


Filename/lib/recovery-mode/options/dpkg
Size1.03 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:55
Last modified09-Mar-2012 03:28
Last accessed05-Jul-2025 21:07
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/bin/sh

. /lib/recovery-mode/l10n.sh

if [ "$1" = "test" ]; then
echo $(eval_gettext "Repair broken packages")
exit 0
fi

# do some cleanup
rm /var/lib/apt/lists/partial/*
rm /var/cache/apt/archives/partial/*

# check and use dist-upgraders partial mode if we have it,
# it contains a lot of useful repair code
for v in 2.7 2.6 2.5; do
python="/usr/bin/python$v"
script_new="/usr/lib/python$v/dist-packages/DistUpgrade/dist-upgrade.py"
script_old="/usr/lib/python$v/site-packages/DistUpgrade/dist-upgrade.py"
if [ -x "$python" ]; then
if [ -e "$script_new" ]; then
script=$script_new
elif [ -e "$script_old" ]; then
script=$script_old
else
continue
fi
"$python" "$script" --partial --frontend DistUpgradeViewText \
--datadir /usr/share/update-manager/
break
fi
done

# now run the apt foo again (if u-m was ok that shouldn't be needed
dpkg --configure -a
apt-get update
apt-get install -f
apt-get dist-upgrade

echo ""
echo $(eval_gettext "Finished, please press ENTER")
read TMP

exit 0