Subscribe via RSS

Social

www.flickr.com
This is a Flickr badge showing public photos and videos from kalel71. Make your own badge here.
Clicking on these helps me out

Search Site
Hobby Photography
Twitter
Amazon Stuff

Entries in linuxtips (5)

Wednesday
Aug052009

Linux Command line Tip: List Users & Processes

The power of Linux for administrators resides in the command line. Here's a quick way to retrieve a list of users currently logged into a Linux server, and their running processes.

  • Type "w" and enter for a full user list
  • Type "w -s" and enter for a short process list
  • Type "w username" and enter for a specific user’s processes.
Friday
Jun122009

Linux Command line Tip: Install Media Codecs for Ubuntu

So you're new to Ubuntu Linux. You just got it installed for the first time, but you are wondering how to enable DVD Playback, Flash capability, MP3, Quicktime, and other popular media formats. Never fear, here's a command to get it all up and running.

Open up a terminal window and type:

sudo apt-get install ubuntu-restricted-extras

You will be prompted for your administrative password, at which point it will begin to download all the required codecs, making your Ubuntu multimedia ready.

Monday
May182009

Linux Command line Tip: Directory Sizes

Some basic BASH shell commands for gathering directory size information.

  • du -h - Shows all directories sizes including sub directories
  • du -sh * - Show all the 1 level sub directories size
  • du -sh - Calculate current directory size you are in
  • du -sh /etc - Size of specific directory
  • df -h - Show overall mounted volume disk space usage

These work in OSX's terminal as well.

Tuesday
Apr142009

Useful Linux Commands

For those new to Linux, here's a handy list of bash commands that I use frequently, along with a brief description of what they're used for.

Click to read more ...

Thursday
Apr022009

Find out your external IP adress

If you've ever been behind a router/firewall and needed to find out what your IP address is to the outside world, here's a few ways to find that information.

The easiest way is through your web browser:

http://whatismyip.org/
http://www.ipchicken.com/
http://checkip.dyndns.org/
http://myip.dk/

Use which ever is easiest for you.

You can also find it via the shell in Linux, and the Terminal in OSX.

Linux: wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]|.]//g'
OSX: curl www.whatismyip.org