Living on Ubuntu - Instance #1
• 383 words • 2 min • updated
As stated in my last post, I’m now using Ubuntu as my main linux distro. This is temporary and might even hurt a little, however I’m willing to keep going with this goal for a while.
In this post I’m going to document some cleanups and tips/tricks/whatever that I find interesting and, sometimes, important too.
Disclaimer: I am a heavily biased Arch Linux user. Anything related to it in this post is probably not a coincidence. This disclaimer won’t be repeated through other posts of this series. So, you have been warned. This is important to understand some of the motivations behind the changes I’ll list here.
Now, just one thing: one of the reasons I’m using Ubuntu right now is so I won’t spend much time customizing it. So, I am deliberately cutting this list in more than a half. There are other things that I would usually do but I simply won’t.
- Enable the root account – by default, the root account is disabled on Ubuntu. This is great so newbies won’t harm the system; however, powerusers don’t like that, this is simply annoying for them. You might do that as follows:
$ sudo passwd rootThen just enter a password for it. Now you might become a superuser by invoking
su.
- Install
aptitude. And never, I mean ever****ever touchapt-get.apt-getis evil and will break your system sooner or later. Top usedaptitudecommands are probablyaptitude install,aptitude upgrade,aptitude removeandaptitude search. The-yflag is useful sometimes, too. So,
$ sudo apt-get install aptitude -yThen forget apt-get!
- Install
unity-tweak-toolthen change some annoying Unity defaults. What is annoying depends on each user taste. - I like to create a
Ramdisk. How? Arch Wiki Ramdisk. This also works for Ubuntu. - Install the
classicmenu-indicatorpackage. - I like using a clipboard manager.
clipitis a good choice and is well integrated with the Unity panel. - Add/activate workspaces. 4 of them is (usually) okay. Use
Ctrl + Alt + directional keysto cycle through them. Super + Dshows the desktop. (Super is usually the key with the windows logo).Ctrl + Alt + Llocks the screen.- Install the
nautilus-open-terminalpackage. - Improve your
.bashrc. How? See here. You’ll also find my.bashrcthere (search for thiagowfx).