By default, there is no ‘.rar’ option in the Compress menu of Linux Mint’s Nautilus file manager.
To add rar support, run this command in Terminal
sudo apt-get install rar unrar
By default, there is no ‘.rar’ option in the Compress menu of Linux Mint’s Nautilus file manager.
To add rar support, run this command in Terminal
sudo apt-get install rar unrar
Chances are that you’ve heard of Feedly. If not, you’re welcome (in advance)
“Feedly transforms your favorite websites into a fun magazine-like start page.” is what Feedly’s makers say about it. No doubt they would choose magazine as the key word in that statement, though I would go with transform.
My RSS reader of choice was Google Reader. When I log in, it looks like this:
The same view on Feedly looks like this: 
See my point? Like Google Reader, Feedly allows you to use keyboard shortcuts to open up articles inline, or mark them as read etc.
Feedly also has an Explore view – which allows you to discover curated content over a multitude of categories.
If you try and like it, you’ll probably want to check the mobile and tablet versions of Feedly as well. Have a go, read in style.
After seeing how to cycle through Terminal’s autocomplete options using the TAB key, here’s how to get rid of another minor annoyance (for some). The autocompletion in Terminal is case-sensitive; if you have a directory called Downloads in your home directory, writing
cd dow
and pressing TAB will not auto-complete to cd Downloads/
To remedy this for the current Terminal session only, run this:
set completion-ignore-case On
More likely though, you’ll want to make this permanent. Run these in Terminal (courtesy of this post):
# If ~./inputrc doesn't exist yet, first include the original /etc/inputrc so we don't override it
if [ ! -a ~/.inputrc ]; then echo "\$include /etc/inputrc" > ~/.inputrc; fi
# Add option to ~/.inputrc to enable case-insensitive tab completion
echo "set completion-ignore-case On" >> ~/.inputrc
To change this for all users, edit /etc/inputrc and add this line:
set completion-ignore-case On
You might have to restart Terminal, but after that you’re set. Happy tabbing.
The Terminal in Ubuntu, a.k.a. bash shell or console, autocompletes file names when the TAB key is pressed. On multiple hits, however, it lists all the options and waits for more inputs to disambiguate.
For instance, in my home directory I have a directory called Documents and another called Downloads. When I type Do and press TAB, nothing happens. Pressing TAB again shows Downloads and Documents, and now I must either type c or w to choose between them. I personally prefer the Windows Command Line style, where tabbing the first time cycles through Documents and Downloads.
To change to the cyclic completion behaviour, simply edit the .bashrc file in your home directory. To change for all users, edit the /etc/bash.bashrc file. Add the following line:
bind '"\t":menu-complete'
Then restart Terminal and you’re done!
P.S. You might also want to see how to make Terminal’s autocompletion case-insensitive.
In Ubuntu 10.04, move the window control buttons (Maximize, Minimize, Close) to the right-hand side by following these simple steps:
gconf-editor (you can use Alt+F2 to bring up Run Application to execute this command)apps > metacity > general and set the button_layout property’s value to menu:minimize,maximize,closeTeraCopy is one of the first applications I setup on a fresh Windows installation.
TeraCopy replaces your Windows copy handler with one that allows you to pause and resume your copying process. You can even minimise copy windows, and subsequent copy operations will wait for previous ones to finish (though you can override that). Oh and did I mention that it’s much faster than the default Windows copy?
Grab it here.
The most simple, elegant and secure option I’ve used to secure my private data: TrueCrypt. Amongst other things, you can create a container file which will contain all your data, and then mount this file as a new drive. All extremely simple to achieve – let’s get started.
Volumes > Create New Volume...Create an encrypted file container. Click NextStandard TrueCrypt volume. Click NextSelect File... This is actually asking you where to create the file container. Choose a path, give a filename and Save. Go to the Next screenEncryption Options screen, we’ll use the default algorithms. Click NextNextNextNTFS. Click Format to create your volume. Depending on how big a container you’ve chosen, this part will take some time. At the end of it, you should get a notification that your volume has been created. You can exit the window at this time.Select File button. Browse to and select the container file you created in step 5.Mount and enter your password in the dialog box that appears next.Dismount. All volumes are also automatically dismounted when you shutdown your system.If you’re interested in learning more about TrueCrypt and exploiting its advanced features, head over to the documentation.
By default, Mozilla Thunderbird installs its profile folder in the user’s home directory.
One problem with this is you could lose your profile if you reinstall your OS for some reason. Another is that the profile folder could grow huge, depending on how much mail you’ve configured Thunderbird to download. In any case, it’s a good idea to move the profile folder to another location, preferably on another drive.
Here’s how to do it:
profiles.ini file in the Thunderbird installation folder (Windows: %APPDATA%\Thunderbird Linux: ~/.thunderbird). The profile folder is specified in the Path property.thunderbird -profilemanagerNew Profile > Next > [Give your new profile a name] > Choose FolderFinish/OK, and come back to the Choose User Profile window.Don't ask at startup checkbox is checked. You can also delete your old profile at this point.Have a look at the official documentation for more details.
Mozilla Thunderbird is a superb email client, no doubt about that. And although I spend 99.9% of my email time on Gmail’s powerful web interface, whenever I use Thunderbird the one thing that always irks me is Thunderbird’s oldest-first default sort order. Even if one changes it to newest-first, the default is still used on other folders.
To change this once and for all, takes less than a minute:
Edit > Preferences > Advanced > Config Editormailnews.default_sort_order to 2That should do it. If you’re interested in changing other advanced options, have a look at this official entry listing all the config entries.