I ran this command:
sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386
But now I want to remove what I've just installed.
What's the command?
I ran this command:
sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386
But now I want to remove what I've just installed.
What's the command?
The easiest way would be to edit your command to enter
sudo apt-get remove gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386
Open your terminal window, press up-arrow repeatedly until you see your install command, press left-arrow until the cursor gets to 'install', backspace it out and type 'remove'.
If this is your previous command ,
sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386
Then run only,
^install^remove
It replaces install
with remove
from the previous command and reruns the corrected command.
Syntax:
^bad^good
sudo apt-get remove
orsudo apt-get purge
– Pandya Jun 14 '14 at 13:47