Removing the fortunes wasn't the problem, it's that you removed a whole slew of other dependencies...
- Code: Select all
vincent@vincent-laptop ~ $ sudo apt-get remove fortune
[sudo] password for vincent:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting fortune-mod instead of fortune
The following packages will be REMOVED:
fortune-mod fortunes-husse fortunes-min mint-artwork-common
mint-artwork-gnome mintsystem
0 upgraded, 0 newly installed, 6 to remove and 1 not upgraded.
After this operation, 13.1MB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.
I'd think you'd want to re-install mint-artwork-common, mint-artwork-gnome, and mintsystem, but I believe they'll use the fortunes packages as dependencies:
- Code: Select all
vincent@vincent-laptop ~ $ apt depends mintsystem
mintsystem
Depends: <mint-info>
mint-info-x64
Depends: cowsay
Depends: <fortune>
fortune-mod
Depends: mint-common
Depends: fortunes-husse
So, to fix this and get rid of fortunes as well, type the following commands in a terminal:
- Code: Select all
sudo apt-get install fortune-mod fortunes-husse fortunes-min mint-artwork-common mint-artwork-gnome mintsystem
gksudo gedit /etc/bash.bashrc
And remove/comment out the line at the bottom, i.e. /usr/bin/mint-fortune. Save, and exit Gedit.
Open a new terminal. Your fortunes should no longer be there.