I presume there is a reason for having the clipart and uninstalling it might not be what you want.
So, what you could easily do is move the clipart to another partition, then symlink from its old location to the new one.
I recognize /dev/sda7 as the other partition you have available for linux on your hard drive, so you could move the clipart there (which means moving it into /home). This is a somewhat bastardized thing, but linux will let you do it without trouble.
To move it into /home/yourhome (where yourhome is the name of your home directory), do this (probably as root):
- Code: Select all
mv /usr/share/clipart /home/yourhome/
ln -s /home/yourhome/clipart /usr/share/clipart
When you do this, your clipart will continue to function the way you are used to, and will no longer occupy space on your system partition.
Now, I emphasize that this is not what would be called a standard practice; /home is supposed to be reserved for user files specifically. But there is no reason you cannot do it - the system will let you - and it will let you keep going while you learn. At a later time, you might reorganize your system and you can fix it then.