This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Hari ini admin sedikit di pusingkan dengan partisi boot di ubuntu server yang sudah penuh 100%, namun setelah browsing sana sini akhirnya dapat solusi yang mudah, tinggal masuk command line sebagi root :
dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic" |while read n;do apt-get -y remove $n;done atau
dpkg --get-selections | \ grep 'linux-image*' | \ awk '{print $1}' | \ egrep -v "linux-image-$(uname -r)|linux-image-generic" | \ while read n do apt-get -y remove $n done