Skip to main content
  1. Archives/

SSH into your servers from Unity using unity-sshsearch-lens

··120 words·1 min·
Tips & How-To's Ubuntu

I love Unity, especially the lens feature. While going through the Ubuntu store, found this neat little lens for initiating an SSH connection.

Unity sshsearch Lens

The lens parses your ~/.ssh/known_hosts & ~/.ssh/config files and provides you with a list of servers that you can connect to. Just install the lens, logout & login back to your desktop and you're good to go.

To search, just bring up Unity dash by hitting the Super (aka Windows) key, type either the username or host and just hit enter to initiate the connection.

Pretty slick. Install it by searching for SSH Search Lens in Ubuntu store or by clicking here. Oh, the notes mention you'll need Oneiric & above - so keep that in mind.

Sathyajith Bhat
Author
Sathyajith Bhat
Author, AWS Container Hero and DevOps Specialist.

Related

find command examples
··518 words·3 mins
Tips & How-To's Applications Linux Ubuntu
I’ve used find extensively and always wanted to writeup a nice post on this, but the linked post trumps my effort! Copy pasted from his blog, as the person’s allowed to do so. Also, as a general note - before using exec with the actual command, do preview it! remove empty directories # # find . -depth -type d -empty -exec rmdir {} \; change various file attributes # find .
Ubuntu Unity Development Does a IAmA on Reddit.
··317 words·2 mins
General Ubuntu
Q: What does Linux need to be if its going to be a real contender to Windows? What are you guys doing about that? A: It needs support from the major players. Personally I think we need to lure: Steam Adobe (all their stuff) Autodesk (all their stuff we don’t have) We also are going to need to increase the buy in from hardware vendors. Nvidia/AMD/Intel all need to care about 2x what they do right now about.
Remove all files but one with rm
··94 words·1 min
Tips & How-To's Terminal Tips-and-Howto's Tutorials
Is there any way to remove all of the files in a directory except for one with a certain filename? For instance, if I had a directory containing the files file1, file2, and dontdelete. Would there be any way to quickly delete file1, and file2 and not dontdelete? I know that I could just do rm file1 file2 but that wouldn’t work for a bunch of files. Also, I’m on Mac OS X if that makes a difference