Posts tagged CLI

SSH and Telnet client for your BlackBerry device

2

BBSSH is an advanced SSH and Telnet client that has been designed for your BlackBerry device. It integrates tightly with your BlackBerry system, providing a powerful and customizable tool for securely accessing the servers you need, when you need them. (more…)

dropbox-public-url-small

KDE client for Dropbox and Right Click Menu Get Public URL

0

As my previous post before, Dropbox is cross platform as well. In linux, Dropbox run perfectly with Gnome and Nautilus. But what about KDE? Yes, you CAN use Dropbox in KDE and make right click menu to get public URL with Dolphin.
So what do you need to do? Well, it’s quite simple. :)
1. Download the daemon from http://www.getdropbox.com/download?plat=lnx.x86 (x86_64 for 64-bit), and extract it to your home directory. It will made a hidden folder called .dropbox-dist. (more…)

olive-aha-connected

Setting Modem Olive AHA in Ubuntu Linux

3

If you are using Olive Modem Mobile Broadband by AHA and your system can’t detect it, here’s how to setting up the modem. Hope it can help your problems.

1. System Check

First, check what is connected to USB Bus using lsusb command

lsusb

(more…)

Ubuntu Modified Header Terminal

Customize Your Linux Terminal Header

2

When we use the Linux, we will often use the Terminal. But by default the terminal is a little bit boring and unattractive.
With a little modifying the ~ /.bashrc file, we can change the display terminals become more attractive. As you can see in the picture above, the results from my terminal modification very similar to Metasploit Console. (more…)

Remove Linux Image

Remove All Unused Linux Kernel Headers, Images and Modules Using CLI

1

You have probably noticed that each time you boot up, the GRUB boot menu lists a bunch of previous Linux kernels which you can boot into. While you can go into Synaptic, search for all the bits and pieces of previous kernels, and mark them for removal, here is a much easier method. (See Picture)

1. In a terminal, simply paste the following command, and it will remove all but the current kernel:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge

2. Then go on to generate a new GRUB menu :
sudo update-grub

when you reboot, you’ll see only the current kernel is listed.

Go to Top