I've got an interesting question today. I want to remove EVERYTHING from my Ubuntu install (or remove the OS and just add an empty kernel), but in either case I don't know exactly how. I want a totally primitive system that I can then add too from the ground up, just a kernel with its built in library of functions.
There are two reasons I want to do this. The first is to learn the command line in a "do or die" environment, both to expand my current knowledge in general and, since I 'tweak' around the system a lot, prepare myself for the inevitable. So, assuming I've already backed up, could someone help walk me through dumping everything from the system, including GUI, so the system is a CLI only (much like hitting the key combo CTRL + ALT + F#).
Note: I don't have any CD's or USB's at the moment so I can't install some other linux OS, I just want to keep what I have on here and just take its clothes off.
Also, I do understand I can change my /etc/default/grub file and change the line "...."quiet splash"
to "text"
, but that's not what I want. I actually want to build it myself. So instead of having to search and ask "What's installed on here and do I need it?" I can just say "What do I need to install on here?"
gnome-terminal
. On every graphical login I've two things starting :firefox
andgnome-terminal
. Or do it the "old-school" way : setGRUB_CMDLINE_LINUX="text"
in the/etc/grub/default
and start GUI only withstartx
command when needed. Oh, and invest into some books, like Ubuntu Linux Toolbox and Unix by Example. The last one is gold ( literally ! ) for scripting. If you have C background - Linux Programming Interface book – Sergiy Kolodyazhnyy Aug 08 '15 at 06:15elinks
. I keep it just in case I ever break the GUI ;-) – Sergiy Kolodyazhnyy Aug 08 '15 at 07:47