Listed Linux Commands for the newbie

This is a linux command line reference for common operations.
Examples marked with • are valid/safe to paste without modification into a terminal, so
you may want to keep a terminal window open while reading this so you can cut & paste.
All these commands have been tested both on Fedora and Ubuntu.

"Command Description
• apropos whatis Show commands pertinent to string. See also threadsafe
• man -t man | ps2pdf - > man.pdf make a pdf of a manual page
which command Show full path name of command
time command See how long a command takes
• time cat Start stopwatch. Ctrl-d to stop. See also sw
• nice info Run a low priority command (The "info" reader in this case)
• renice 19 -p $$ Make shell (script) low priority. Use for non interactive tasks
dir navigation
• cd - Go to previous directory
• cd Go to $HOME directory
(cd dir && command) Go to dir, execute command and return to current dir
• pushd . Put current dir on stack so you can popd back to it
file searching
• alias l='ls -l --color=auto' quick dir listing
• ls -lrt List files by date. See also newest and find_mm_yyyy
• ls /usr/bin | pr -T9 -W$COLUMNS Print in 9 columns to width of terminal
find -name '*.[ch]' | xargs grep -E 'expr' Search 'expr' in this dir and below. See also findrepo
find -type f -print0 | xargs -r0 grep -F 'example' Search all regular files for 'example' in this dir and below
find -maxdepth 1 -type f | xargs grep -F 'example' Search all regular files for 'example' in this dir
find -maxdepth 1 -type d | while read dir; do echo $dir; echo cmd2; done Process each item with multiple commands (in while loop)
• find -type f ! -perm -444 Find files not readable by all (useful for web site)
• find -type d ! -perm -111 Find dirs not accessible by all (useful for web site)
• locate -r 'file[^/]*\.txt' Search cached index for names. This re is like glob *file*.txt
• look reference Quickly search (sorted) dictionary for prefix
• grep --color reference /usr/share/dict/words Highlight occurances of regular expression in dictionary
archives and compression
gpg -c file Encrypt file
gpg file.gpg Decrypt file
tar -c dir/ | bzip2 > dir.tar.bz2 Make compressed archive of dir/
bzip2 -dc dir.tar.bz2 | tar -x Extract archive (use gzip instead of bzip2 for tar.gz files)
tar -c dir/ | gzip | gpg -c | ssh user@remote 'dd of=dir.tar.gz.gpg' Make encrypted archive of dir/ on remote machine
find dir/ -name '*.txt' | tar -c --files-from=- | bzip2 > dir_txt.tar.bz2 Make archive of subset of dir/ and below
find dir/ -name '*.txt' | xargs cp -a --target-directory=dir_txt/ --parents Make copy of subset of dir/ and below
( tar -c /dir/to/copy ) | ( cd /where/to/ && tar -x -p ) Copy (with permissions) copy/ dir to /where/to/ dir
( cd /dir/to/copy && tar -c . ) | ( cd /where/to/ && tar -x -p ) Copy (with permissions) contents of copy/ dir to /where/to/
( tar -c /dir/to/copy ) | ssh -C user@remote 'cd /where/to/ && tar -x -p' Copy (with permissions) copy/ dir to remote:/where/to/ dir
dd bs=1M if=/dev/sda | gzip | ssh user@remote 'dd of=sda.gz' Backup harddisk to remote machine
rsync (Network efficient file copier: Use the --dry-run option for testing)
rsync -P rsync://rsync.server.com/path/to/file file Only get diffs. Do multiple times for troublesome downloads
rsync --bwlimit=1000 fromfile tofile Locally copy with rate limit. It's like nice for I/O
rsync -az -e ssh --delete ~/public_html/ remote.com:'~/public_html' Mirror web site (using compression and encryption)
rsync -auz -e ssh remote:/dir/ . && rsync -auz -e ssh . remote:/dir/ Synchronize current directory with remote one
ssh (Secure SHell)
ssh $USER@$HOST command Run command on $HOST as $USER (default command=shell)
• ssh -f -Y $USER@$HOSTNAME xeyes Run GUI command on $HOSTNAME as $USER
scp -p -r $USER@$HOST: file dir/ Copy with permissions to $USER's home directory on $HOST
ssh -g -L 8080:localhost:80 root@$HOST Forward connections to $HOSTNAME:8080 out to $HOST:80
ssh -R 1434:imap:143 root@$HOST Forward connections from $HOST:1434 in to imap:143
wget (multi purpose download tool)
• (cd cli && wget -nd -pHEKk http://www.pixelbeat.org/cmdline.html) Store local browsable version of a page to the current dir
wget -c http://www.example.com/large.file Continue downloading a partially downloaded file
wget -r -nd -np -l1 -A '*.jpg' http://www.example.com/dir/ Download a set of files to the current directory
wget ftp://remote/file[1-9].iso/ FTP supports globbing directly
• wget -q -O- http://www.pixelbeat.org/timeline.html | grep 'a href' | head Process output directly
echo 'wget url' | at 01:00 Download url at 1AM to current dir
wget --limit-rate=20k url Do a low priority download (limit to 20KB/s in this case)
wget -nv --spider --force-html -i bookmarks.html Check links in a file
wget --mirror http://www.example.com/ Efficiently update a local copy of a site (handy from cron)
networking (Note ifconfig, route, mii-tool, nslookup commands are obsolete)
ethtool eth0 Show status of ethernet interface eth0
ethtool --change eth0 autoneg off speed 100 duplex full Manually set ethernet interface speed
iwconfig eth1 Show status of wireless interface eth1
iwconfig eth1 rate 1Mb/s fixed Manually set wireless interface speed
• iwlist scan List wireless networks in range
• ip link show List network interfaces
ip link set dev eth0 name wan Rename interface eth0 to wan
ip link set dev eth0 up Bring interface eth0 up (or down)
• ip addr show List addresses for interfaces
ip addr add 1.2.3.4/24 brd + dev eth0 Add (or del) ip and mask (255.255.255.0)
• ip route show List routing table
ip route add default via 1.2.3.254 Set default gateway to 1.2.3.254
• tc qdisc add dev lo root handle 1:0 netem delay 20msec Add 20ms latency to loopback device (for testing)
• tc qdisc del dev lo root Remove latency added above
• host pixelbeat.org Lookup DNS ip address for name or vice versa
• hostname -i Lookup local ip address (equivalent to host `hostname`)
• whois pixelbeat.org Lookup whois info for hostname or ip address
• netstat -tupl List internet services on a system
• netstat -tup List active connections to/from system
windows networking (Note samba is the package that provides all this windows specific networking support)
• smbtree Find windows machines. See also findsmb
nmblookup -A 1.2.3.4 Find the windows (netbios) name associated with ip address
smbclient -L windows_box List shares on windows machine or samba server
mount -t smbfs -o fmask=666,guest //windows_box/share /mnt/share Mount a windows share
echo 'message' | smbclient -M windows_box Send popup to windows machine (off by default in XP sp2)
text manipulation (Note sed uses stdin and stdout. Newer versions support inplace editing with the -i option)
sed 's/string1/string2/g' Replace string1 with string2
sed 's/\(.*\)1/\12/g' Modify anystring1 to anystring2
sed '/ *#/d; /^ *$/d' Remove comments and blank lines
sed ':a; /\\$/N; s/\\\n//; ta' Concatenate lines with trailing \
sed 's/[ \t]*$//' Remove trailing spaces from lines
sed 's/\([\\`\\"$\\\\]\)/\\\1/g' Escape shell metacharacters active within double quotes
• seq 10 | sed "s/^/ /; s/ *\(.\{7,\}\)/\1/" Right align numbers
sed -n '1000p;1000q' Print 1000th line
sed -n '10,20p;20q' Print lines 10 to 20
sed -n 's/.*\(.*\)<\/title>.*/\1/ip;T;q' Extract title from HTML web page <br /> sed -i 42d ~/.ssh/known_hosts Delete a particular line <br /> sort -t. -k1,1n -k2,2n -k3,3n -k4,4n Sort IPV4 ip addresses <br />• echo 'Test' | tr '[:lower:]' '[:upper:]' Case conversion <br />• tr -dc '[:print:]' < /dev/urandom Filter non printable characters <br />• history | wc -l Count lines <br />set operations (Note you can export LANG=C for speed. Also these assume no duplicate lines within a file) <br /> sort file1 file2 | uniq Union of unsorted files <br /> sort file1 file2 | uniq -d Intersection of unsorted files <br /> sort file1 file1 file2 | uniq -u Difference of unsorted files <br /> sort file1 file2 | uniq -u Symmetric Difference of unsorted files <br /> join -a1 -a2 file1 file2 Union of sorted files <br /> join file1 file2 Intersection of sorted files <br /> join -v2 file1 file2 Difference of sorted files <br /> join -v1 -v2 file1 file2 Symmetric Difference of sorted files <br />math <br />• echo '(1 + sqrt(5))/2' | bc -l Quick math (Calculate φ). See also bc <br />• echo 'pad=20; min=64; (100*10^6)/((pad+min)*8)' | bc More complex (int) e.g. This shows max FastE packet rate <br />• echo 'pad=20; min=64; print (100E6)/((pad+min)*8)' | python Python handles scientific notation <br />• echo 'pad=20; plot [64:1518] (100*10**6)/((pad+x)*8)' | gnuplot -persist Plot FastE packet rate vs packet size <br />• echo 'obase=16; ibase=10; 64206' | bc Base conversion (decimal to hexadecimal) <br />• echo $((0x2dec)) Base conversion (hex to dec) ((shell arithmetic expansion)) <br />• units -t '100m/9.69s' 'miles/hour' Unit conversion (metric to imperial) <br />• units -t '500GB' 'GiB' Unit conversion (SI to IEC prefixes) <br />• units -t '1 googol' Definition lookup <br />• seq 100 | (tr '\n' +; echo 0) | bc Add a column of numbers. See also add and funcpy <br />calendar <br />• cal -3 Display a calendar <br />• cal 9 1752 Display a calendar for a particular month year <br />• date -d fri What date is it this friday. See also day <br />• [ $(date -d "tomorrow" +%d) = "01" ] || exit exit a script unless it's the last day of the month <br />• date --date='25 Dec' +%A What day does xmas fall on, this year <br />• date --date='@2147483647' Convert seconds since the epoch (1970-01-01 UTC) to date <br />• TZ=':America/Los_Angeles' date What time is it on West coast of US (use tzselect to find TZ) <br /> echo "mail -s 'get the train' P@draigBrady.com < /dev/null" | at 17:45 Email reminder <br />• echo "DISPLAY=$DISPLAY xmessage cooker" | at "NOW + 30 minutes" Popup reminder <br />locales <br />• printf "%'d\n" 1234 Print number with thousands grouping appropriate to locale <br />• BLOCK_SIZE=\'1 ls -l get ls to do thousands grouping appropriate to locale <br />• echo "I live in `locale territory`" Extract info from locale database <br />• LANG=en_IE.utf8 locale int_prefix Lookup locale info for specific country. See also ccodes <br />• locale | cut -d= -f1 | xargs locale -kc | less List fields available in locale database <br />recode (Obsoletes iconv, dos2unix, unix2dos) <br />• recode -l | less Show available conversions (aliases on each line) <br /> recode windows-1252.. file_to_change.txt Windows "ansi" to local charset (auto does CRLF conversion) <br /> recode utf-8/CRLF.. file_to_change.txt Windows utf8 to local charset <br /> recode iso-8859-15..utf8 file_to_change.txt Latin9 (western europe) to utf8 <br /> recode ../b64 <> file.b64 Base64 encode <br /> recode /qp.. <> file.qp Quoted printable decode <br /> recode ..HTML <> file.html Text to HTML <br />• recode -lf windows-1252 | grep euro Lookup table of characters <br />• echo -n 0x80 | recode latin-9/x1..dump Show what a code represents in latin-9 charmap <br />• echo -n 0x20AC | recode ucs-2/x2..latin-9/x Show latin-9 encoding <br />• echo -n 0x20AC | recode ucs-2/x2..utf-8/x Show utf-8 encoding <br />CDs <br /> gzip < /dev/cdrom > cdrom.iso.gz Save copy of data cdrom <br /> mkisofs -V LABEL -r dir | gzip > cdrom.iso.gz Create cdrom image from contents of dir <br /> mount -o loop cdrom.iso /mnt/dir Mount the cdrom image at /mnt/dir (read only) <br /> cdrecord -v dev=/dev/cdrom blank=fast Clear a CDRW <br /> gzip -dc cdrom.iso.gz | cdrecord -v dev=/dev/cdrom - Burn cdrom image (use dev=ATAPI -scanbus to confirm dev) <br /> cdparanoia -B Rip audio tracks from CD to wav files in current dir <br /> cdrecord -v dev=/dev/cdrom -audio *.wav Make audio CD from all wavs in current dir (see also cdrdao) <br /> oggenc --tracknum='track' track.cdda.wav -o 'track.ogg' Make ogg file from wav file <br />disk space (See also FSlint) <br />• ls -lSr Show files by size, biggest last <br />• du -s * | sort -k1,1rn | head Show top disk users in current dir. See also dutop <br />• df -h Show free space on mounted filesystems <br />• df -i Show free inodes on mounted filesystems <br />• fdisk -l Show disks partitions sizes and types (run as root) <br />• rpm -q -a --qf '%10{SIZE}\t%{NAME}\n' | sort -k1,1n List all packages by installed size (Bytes) on rpm distros <br />• dpkg-query -W -f='${Installed-Size;10}\t${Package}\n' | sort -k1,1n List all packages by installed size (KBytes) on deb distros <br />• dd bs=1 seek=2TB if=/dev/null of=ext3.test Create a large test file (taking no space). See also truncate <br />monitoring/debugging <br />• tail -f /var/log/messages Monitor messages in a log file <br />• strace -c ls >/dev/null Summarise/profile system calls made by command <br />• strace -f -e open ls >/dev/null List system calls made by command <br />• ltrace -f -e getenv ls >/dev/null List library calls made by command <br />• lsof -p $$ List paths that process id has open <br />• lsof ~ List processes that have specified path open <br />• tcpdump not port 22 Show network traffic except ssh. See also tcpdump_not_me <br />• ps -e -o pid,args --forest List processes in a hierarchy <br />• ps -e -o pcpu,cpu,nice,state,cputime,args --sort pcpu | sed '/^ 0.0 /d' List processes by % cpu usage <br />• ps -e -orss=,args= | sort -b -k1,1n | pr -TW$COLUMNS List processes by mem usage. See also ps_mem.py <br />• ps -C firefox-bin -L -o pid,tid,pcpu,state List all threads for a particular process <br />• ps -p 1,2 List info for particular process IDs <br />• last reboot Show system reboot history <br />• free -m Show amount of (remaining) RAM (-m displays in MB) <br />• watch -n.1 'cat /proc/interrupts' Watch changeable data continuously <br />system information (see also sysinfo) ('#' means root access is required) <br />• uname -a Show kernel version and system architecture <br />• head -n1 /etc/issue Show name and version of distribution <br />• cat /proc/partitions Show all partitions registered on the system <br />• grep MemTotal /proc/meminfo Show RAM total seen by the system <br />• grep "model name" /proc/cpuinfo Show CPU(s) info <br />• lspci -tv Show PCI info <br />• lsusb -tv Show USB info <br />• mount | column -t List mounted filesystems on the system (and align output) <br /># dmidecode -q | less Display SMBIOS/DMI information <br /># smartctl -A /dev/sda | grep Power_On_Hours How long has this disk (system) been powered on in total <br /># hdparm -i /dev/sda Show info about disk sda <br /># hdparm -tT /dev/sda Do a read speed test on disk sda <br /># badblocks -s /dev/sda Test for unreadable blocks on disk sda <br />interactive (see also linux keyboard shortcuts) <br />• readline Line editor used by bash, python, bc, gnuplot, ... <br />• screen Virtual terminals with detach capability, ... <br />• mc Powerful file manager that can browse rpm, tar, ftp, ssh, ... <br />• gnuplot Interactive/scriptable graphing <br />• links Web browser <br />• xdg-open http://www.pixelbeat.org/ open a file or url with the registered desktop application <br />miscellaneous <br />• alias hd='od -Ax -tx1z -v' Handy hexdump. (usage e.g.: • hd /proc/self/cmdline | less) <br />• alias realpath='readlink -f' Canonicalize path. (usage e.g.: • realpath ~/../$USER) <br />• set | grep $USER Search current environment <br /> touch -c -t 0304050607 file Set file timestamp (YYMMDDhhmm) <br />• python -m SimpleHTTPServer Serve current directory tree at http://$HOSTNAME:8000/" </div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <div class='byline post-share-buttons goog-inline-block'> <div aria-owns='sharing-popup-Blog1-footer-1-1845653724467708593' class='sharing' data-title=' Listed Linux Commands for the newbie'> <button aria-controls='sharing-popup-Blog1-footer-1-1845653724467708593' aria-label='Share' class='sharing-button touch-icon-button' id='sharing-button-Blog1-footer-1-1845653724467708593' role='button'> Share </button> <div class='share-buttons-container'> <ul aria-hidden='true' aria-label='Share' class='share-buttons hidden' id='sharing-popup-Blog1-footer-1-1845653724467708593' role='menu'> <li> <span aria-label='Get link' class='sharing-platform-button sharing-element-link' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=1845653724467708593&target=' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Get link'> <svg class='svg-icon-24 touch-icon sharing-link'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_link_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Get link</span> </span> </li> <li> <span aria-label='Share to Facebook' class='sharing-platform-button sharing-element-facebook' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=1845653724467708593&target=facebook' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Share to Facebook'> <svg class='svg-icon-24 touch-icon sharing-facebook'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_facebook_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Facebook</span> </span> </li> <li> <span aria-label='Share to X' class='sharing-platform-button sharing-element-twitter' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=1845653724467708593&target=twitter' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Share to X'> <svg class='svg-icon-24 touch-icon sharing-twitter'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_twitter_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>X</span> </span> </li> <li> <span aria-label='Share to Pinterest' class='sharing-platform-button sharing-element-pinterest' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=1845653724467708593&target=pinterest' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Share to Pinterest'> <svg class='svg-icon-24 touch-icon sharing-pinterest'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_pinterest_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Pinterest</span> </span> </li> <li> <span aria-label='Email' class='sharing-platform-button sharing-element-email' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=1845653724467708593&target=email' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Email'> <svg class='svg-icon-24 touch-icon sharing-email'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_email_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Email</span> </span> </li> <li aria-hidden='true' class='hidden'> <span aria-label='Share to other apps' class='sharing-platform-button sharing-element-other' data-url='https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html' role='menuitem' tabindex='-1' title='Share to other apps'> <svg class='svg-icon-24 touch-icon sharing-sharingOther'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_more_horiz_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Other Apps</span> </span> </li> </ul> </div> </div> </div> <span class='byline'> <a class='flat-button' href='https://www.blogger.com/email-post/4810498967646724943/1845653724467708593'>Email Post</a> </span> </div> <div class='post-footer-line post-footer-line-2'> <span class='byline post-labels'> <span class='byline-label'>Labels:</span> <a href='https://mikehoulden.blogspot.com/search/label/Ubuntu%20and%20linux' rel='tag'>Ubuntu and linux</a> </span> </div> <div class='post-footer-line post-footer-line-3'> </div> </div> </div> </div> <section class='comments' data-num-comments='0' id='comments'> <a name='comments'></a> <h3 class='title'>Comments</h3> <div id='Blog1_comments-block-wrapper'> </div> <div class='footer'> <a href='https://www.blogger.com/comment/fullpage/post/4810498967646724943/1845653724467708593' onclick=''> Post a Comment </a> </div> </section> <div class='inline-ad'> <ins class='adsbygoogle' data-ad-client='ca-pub-3086021209342646' data-ad-format='auto' data-ad-host='ca-host-pub-1556223355139109' style='/* Done in css. */'> </ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> </div><div class='widget PopularPosts' data-version='2' id='PopularPosts1'> <h3 class='title'> Popular Posts </h3> <div class='widget-content'> <div role='feed'> <article class='post' role='article'> <div class='post no-featured-image'> <div class='post-header'> <div class='post-header-line-1'> <span class='byline post-author vcard'> <span class='post-author-label'> Posted by </span> <span class='fn'> <meta content='https://www.blogger.com/profile/15467626726026339999'/> <a class='g-profile' href='https://www.blogger.com/profile/15467626726026339999' rel='author' title='author profile'> <span>Mike Houlden's Tech Corner</span> </a> </span> </span> <span class='byline post-timestamp'> <meta content='http://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html'/> <a class='timestamp-link' href='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' rel='bookmark' title='permanent link'> <time class='published' datetime='2014-02-18T20:03:00-05:00' title='2014-02-18T20:03:00-05:00'> February 18, 2014 </time> </a> </span> </div> </div> <h3 class='post-title'><a href='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html'>Here Is A Mere $7 USB PC Powered By Linux!</a></h3> <div class='post-footer'> <div class='post-footer-line post-footer-line-0'> <div class='byline post-share-buttons goog-inline-block'> <div aria-owns='sharing-popup-PopularPosts1-footer-0-4888775119137775881' class='sharing' data-title='Here Is A Mere $7 USB PC Powered By Linux!'> <button aria-controls='sharing-popup-PopularPosts1-footer-0-4888775119137775881' aria-label='Share' class='sharing-button touch-icon-button' id='sharing-button-PopularPosts1-footer-0-4888775119137775881' role='button'> Share </button> <div class='share-buttons-container'> <ul aria-hidden='true' aria-label='Share' class='share-buttons hidden' id='sharing-popup-PopularPosts1-footer-0-4888775119137775881' role='menu'> <li> <span aria-label='Get link' class='sharing-platform-button sharing-element-link' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=4888775119137775881&target=' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Get link'> <svg class='svg-icon-24 touch-icon sharing-link'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_link_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Get link</span> </span> </li> <li> <span aria-label='Share to Facebook' class='sharing-platform-button sharing-element-facebook' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=4888775119137775881&target=facebook' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Share to Facebook'> <svg class='svg-icon-24 touch-icon sharing-facebook'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_facebook_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Facebook</span> </span> </li> <li> <span aria-label='Share to X' class='sharing-platform-button sharing-element-twitter' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=4888775119137775881&target=twitter' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Share to X'> <svg class='svg-icon-24 touch-icon sharing-twitter'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_twitter_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>X</span> </span> </li> <li> <span aria-label='Share to Pinterest' class='sharing-platform-button sharing-element-pinterest' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=4888775119137775881&target=pinterest' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Share to Pinterest'> <svg class='svg-icon-24 touch-icon sharing-pinterest'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_pinterest_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Pinterest</span> </span> </li> <li> <span aria-label='Email' class='sharing-platform-button sharing-element-email' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=4888775119137775881&target=email' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Email'> <svg class='svg-icon-24 touch-icon sharing-email'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_email_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Email</span> </span> </li> <li aria-hidden='true' class='hidden'> <span aria-label='Share to other apps' class='sharing-platform-button sharing-element-other' data-url='https://mikehoulden.blogspot.com/2014/02/here-is-mere-7-usb-pc-powered-by-linux.html' role='menuitem' tabindex='-1' title='Share to other apps'> <svg class='svg-icon-24 touch-icon sharing-sharingOther'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_more_horiz_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Other Apps</span> </span> </li> </ul> </div> </div> </div> <span class='byline post-comment-link container'> <a class='comment-link' href='https://www.blogger.com/comment/fullpage/post/4810498967646724943/4888775119137775881' onclick=''> Post a Comment </a> </span> </div> </div> </div> </article> <article class='post' role='article'> <div class='post no-featured-image'> <div class='post-header'> <div class='post-header-line-1'> <span class='byline post-author vcard'> <span class='post-author-label'> Posted by </span> <span class='fn'> <meta content='https://www.blogger.com/profile/15467626726026339999'/> <a class='g-profile' href='https://www.blogger.com/profile/15467626726026339999' rel='author' title='author profile'> <span>Mike Houlden's Tech Corner</span> </a> </span> </span> <span class='byline post-timestamp'> <meta content='http://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html'/> <a class='timestamp-link' href='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' rel='bookmark' title='permanent link'> <time class='published' datetime='2012-12-24T00:10:00-05:00' title='2012-12-24T00:10:00-05:00'> December 24, 2012 </time> </a> </span> </div> </div> <h3 class='post-title'><a href='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html'>iOS 6 Jailbreak: How To Downgrade iOS 6.0.1 To iOS 5.1.1 Using Redsn0w On A4 Devices [Tutorial]</a></h3> <div class='post-footer'> <div class='post-footer-line post-footer-line-0'> <div class='byline post-share-buttons goog-inline-block'> <div aria-owns='sharing-popup-PopularPosts1-footer-0-2352042584855099136' class='sharing' data-title='iOS 6 Jailbreak: How To Downgrade iOS 6.0.1 To iOS 5.1.1 Using Redsn0w On A4 Devices [Tutorial]'> <button aria-controls='sharing-popup-PopularPosts1-footer-0-2352042584855099136' aria-label='Share' class='sharing-button touch-icon-button' id='sharing-button-PopularPosts1-footer-0-2352042584855099136' role='button'> Share </button> <div class='share-buttons-container'> <ul aria-hidden='true' aria-label='Share' class='share-buttons hidden' id='sharing-popup-PopularPosts1-footer-0-2352042584855099136' role='menu'> <li> <span aria-label='Get link' class='sharing-platform-button sharing-element-link' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=2352042584855099136&target=' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Get link'> <svg class='svg-icon-24 touch-icon sharing-link'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_link_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Get link</span> </span> </li> <li> <span aria-label='Share to Facebook' class='sharing-platform-button sharing-element-facebook' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=2352042584855099136&target=facebook' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Share to Facebook'> <svg class='svg-icon-24 touch-icon sharing-facebook'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_facebook_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Facebook</span> </span> </li> <li> <span aria-label='Share to X' class='sharing-platform-button sharing-element-twitter' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=2352042584855099136&target=twitter' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Share to X'> <svg class='svg-icon-24 touch-icon sharing-twitter'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_twitter_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>X</span> </span> </li> <li> <span aria-label='Share to Pinterest' class='sharing-platform-button sharing-element-pinterest' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=2352042584855099136&target=pinterest' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Share to Pinterest'> <svg class='svg-icon-24 touch-icon sharing-pinterest'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_pinterest_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Pinterest</span> </span> </li> <li> <span aria-label='Email' class='sharing-platform-button sharing-element-email' data-href='https://www.blogger.com/share-post.g?blogID=4810498967646724943&postID=2352042584855099136&target=email' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Email'> <svg class='svg-icon-24 touch-icon sharing-email'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_email_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Email</span> </span> </li> <li aria-hidden='true' class='hidden'> <span aria-label='Share to other apps' class='sharing-platform-button sharing-element-other' data-url='https://mikehoulden.blogspot.com/2012/12/ios-6-jailbreak-how-to-downgrade-ios.html' role='menuitem' tabindex='-1' title='Share to other apps'> <svg class='svg-icon-24 touch-icon sharing-sharingOther'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_more_horiz_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Other Apps</span> </span> </li> </ul> </div> </div> </div> <span class='byline post-comment-link container'> <a class='comment-link' href='https://www.blogger.com/comment/fullpage/post/4810498967646724943/2352042584855099136' onclick=''> Post a Comment </a> </span> </div> </div> </div> </article> </div> </div> </div></div> </main> </div> <footer class='footer section' id='footer' name='Footer'><div class='widget Attribution' data-version='2' id='Attribution1'> <div class='widget-content'> <div class='blogger'> <a href='https://www.blogger.com' rel='nofollow'> <svg class='svg-icon-24'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_post_blogger_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> Powered by Blogger </a> </div> <div class='image-attribution'> Theme images by <a href="http://www.offset.com/photos/223311">Matt Vince</a> </div> </div> </div></footer> </div> </div> <aside class='sidebar-container container sidebar-invisible' role='complementary'> <div class='navigation'> <svg class='svg-icon-24 touch-icon sidebar-back rtl-reversible-icon'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_arrow_back_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> <div class='section' id='sidebar' name='Sidebar'><div class='widget Profile' data-version='2' id='Profile1'> <div class='widget-content team'> <ul> <li> <div class='team-member'> <a class='profile-link g-profile' href='https://www.blogger.com/profile/05325373315894066383'> <div class='default-avatar-wrapper'> <svg class='svg-icon-24 avatar-icon'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_person_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> <div class='profile-name-wrapper'> <div class='profile-name'>Boro_Stig</div> <div class='visit-profile'>Visit profile</div> </div> </a> </div> </li> <li> <div class='team-member'> <a class='profile-link g-profile' href='https://www.blogger.com/profile/15467626726026339999'> <div class='default-avatar-wrapper'> <svg class='svg-icon-24 avatar-icon'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_person_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> <div class='profile-name-wrapper'> <div class='profile-name'>Mike Houlden's Tech Corner</div> <div class='visit-profile'>Visit profile</div> </div> </a> </div> </li> <li> <div class='team-member'> <a class='profile-link g-profile' href='https://www.blogger.com/profile/10922243854167860824'> <div class='default-avatar-wrapper'> <svg class='svg-icon-24 avatar-icon'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_person_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> <div class='profile-name-wrapper'> <div class='profile-name'>Rocky_IV</div> <div class='visit-profile'>Visit profile</div> </div> </a> </div> </li> </ul> </div> </div><div class='widget BlogArchive' data-version='2' id='BlogArchive1'> <details class='collapsible extendable'> <summary> <div class='collapsible-title'> <h3 class='title'> Archive </h3> <svg class='svg-icon-24 chevron-down'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_more_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <svg class='svg-icon-24 chevron-up'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_less_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> </summary> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <div class='first-items'> <ul class='flat'> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2024/02/'>February 2024<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2022/06/'>June 2022<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2020/08/'>August 2020<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2019/12/'>December 2019<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2019/09/'>September 2019<span class='post-count'>4</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2018/02/'>February 2018<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2017/10/'>October 2017<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2017/09/'>September 2017<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2017/08/'>August 2017<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2017/02/'>February 2017<span class='post-count'>2</span></a> </li> </ul> </div> <div class='remaining-items'> <ul class='flat'> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2016/10/'>October 2016<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2016/09/'>September 2016<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/10/'>October 2015<span class='post-count'>4</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/09/'>September 2015<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/08/'>August 2015<span class='post-count'>11</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/07/'>July 2015<span class='post-count'>18</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/06/'>June 2015<span class='post-count'>9</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/05/'>May 2015<span class='post-count'>55</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/04/'>April 2015<span class='post-count'>25</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/03/'>March 2015<span class='post-count'>8</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/02/'>February 2015<span class='post-count'>34</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2015/01/'>January 2015<span class='post-count'>25</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/12/'>December 2014<span class='post-count'>28</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/11/'>November 2014<span class='post-count'>30</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/10/'>October 2014<span class='post-count'>4</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/09/'>September 2014<span class='post-count'>5</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/08/'>August 2014<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/07/'>July 2014<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/05/'>May 2014<span class='post-count'>8</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/04/'>April 2014<span class='post-count'>26</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/03/'>March 2014<span class='post-count'>20</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/02/'>February 2014<span class='post-count'>87</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2014/01/'>January 2014<span class='post-count'>130</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/12/'>December 2013<span class='post-count'>225</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/11/'>November 2013<span class='post-count'>201</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/10/'>October 2013<span class='post-count'>162</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/09/'>September 2013<span class='post-count'>9</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/08/'>August 2013<span class='post-count'>5</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/07/'>July 2013<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/06/'>June 2013<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/05/'>May 2013<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/03/'>March 2013<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/02/'>February 2013<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2013/01/'>January 2013<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/12/'>December 2012<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/10/'>October 2012<span class='post-count'>5</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/09/'>September 2012<span class='post-count'>4</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/07/'>July 2012<span class='post-count'>8</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/06/'>June 2012<span class='post-count'>9</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/05/'>May 2012<span class='post-count'>23</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/04/'>April 2012<span class='post-count'>5</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/03/'>March 2012<span class='post-count'>11</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/02/'>February 2012<span class='post-count'>43</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2012/01/'>January 2012<span class='post-count'>77</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2011/10/'>October 2011<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2010/05/'>May 2010<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2010/01/'>January 2010<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2009/05/'>May 2009<span class='post-count'>2</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2009/01/'>January 2009<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2008/12/'>December 2008<span class='post-count'>5</span></a> </li> <li class='archivedate'> <a href='https://mikehoulden.blogspot.com/2008/11/'>November 2008<span class='post-count'>4</span></a> </li> </ul> </div> <span class='show-more flat-button'>Show more</span> <span class='show-less hidden flat-button'>Show less</span> </div> </div> </div> </details> </div><div class='widget Label' data-version='2' id='Label1'> <details class='collapsible extendable'> <summary> <div class='collapsible-title'> <h3 class='title'> Labels </h3> <svg class='svg-icon-24 chevron-down'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_more_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <svg class='svg-icon-24 chevron-up'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_less_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> </summary> <div class='widget-content list-label-widget-content'> <div class='first-items'> <ul> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Computers'>Computers<span class='label-count'>2</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Computers%20and%20technologies'>Computers and technologies<span class='label-count'>4</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Linux%2FUbuntu'>Linux/Ubuntu<span class='label-count'>2</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Politics%20And%20Religion'>Politics And Religion<span class='label-count'>2</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Technology'>Technology<span class='label-count'>1</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Ubuntu'>Ubuntu<span class='label-count'>3</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Ubuntu%20and%20linux'>Ubuntu and linux<span class='label-count'>4</span></a></li> <li><a class='label-name' href='https://mikehoulden.blogspot.com/search/label/Windows'>Windows<span class='label-count'>1</span></a></li> </ul> </div> </div> </details> </div><div class='widget ReportAbuse' data-version='2' id='ReportAbuse1'> <h3 class='title'> <a class='report_abuse' href='https://www.blogger.com/go/report-abuse' rel='noopener nofollow' target='_blank'> Report Abuse </a> </h3> </div> </div> </aside> <script type="text/javascript" src="https://resources.blogblog.com/blogblog/data/res/1573752109-fancy_compiled.js" async="true"></script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3000588928-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY6NKFqqQg9epYxDJm9KaXXO9XfBlA:1752730667207';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d4810498967646724943','//mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html','4810498967646724943'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '4810498967646724943', 'title': 'Mike Houlden\x27s Tech Corner', 'url': 'https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html', 'canonicalUrl': 'http://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html', 'homepageUrl': 'https://mikehoulden.blogspot.com/', 'searchUrl': 'https://mikehoulden.blogspot.com/search', 'canonicalHomepageUrl': 'http://mikehoulden.blogspot.com/', 'blogspotFaviconUrl': 'https://mikehoulden.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Mike Houlden\x26#39;s Tech Corner - Atom\x22 href\x3d\x22https://mikehoulden.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Mike Houlden\x26#39;s Tech Corner - RSS\x22 href\x3d\x22https://mikehoulden.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Mike Houlden\x26#39;s Tech Corner - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/4810498967646724943/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Mike Houlden\x26#39;s Tech Corner - Atom\x22 href\x3d\x22https://mikehoulden.blogspot.com/feeds/1845653724467708593/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-3086021209342646', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/923dbacbbd81e7c1', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '1845653724467708593', 'pageName': ' Listed Linux Commands for the newbie', 'pageTitle': 'Mike Houlden\x27s Tech Corner: Listed Linux Commands for the newbie'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'Soho', 'localizedName': 'Soho', 'isResponsive': true, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'fancy_neon', 'variantId': 'fancy_neon'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': ' Listed Linux Commands for the newbie', 'description': 'This is a linux command line reference for common operations.\r Examples marked with \u2022 are valid/safe to paste without modification into a te...', 'url': 'https://mikehoulden.blogspot.com/2008/12/listed-linux-commands-for-newbie.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 1845653724467708593}}, {'name': 'widgets', 'data': [{'title': 'Search This Blog', 'type': 'BlogSearch', 'sectionId': 'search_top', 'id': 'BlogSearch1'}, {'title': 'Mike Houlden\x27s Tech Corner (Header)', 'type': 'Header', 'sectionId': 'header', 'id': 'Header1'}, {'title': 'Pages', 'type': 'PageList', 'sectionId': 'page_list_top', 'id': 'PageList1'}, {'title': '', 'type': 'FeaturedPost', 'sectionId': 'page_body', 'id': 'FeaturedPost1', 'postId': '5429786092630272282'}, {'type': 'AdSense', 'sectionId': 'page_body', 'id': 'AdSense1'}, {'title': 'Blog Posts', 'type': 'Blog', 'sectionId': 'page_body', 'id': 'Blog1', 'posts': [{'id': '1845653724467708593', 'title': ' Listed Linux Commands for the newbie', 'showInlineAds': true}], 'headerByline': {'regionName': 'header1', 'items': [{'name': 'author', 'label': 'Posted by'}, {'name': 'timestamp', 'label': ''}]}, 'footerBylines': [{'regionName': 'footer1', 'items': [{'name': 'share', 'label': ''}, {'name': 'comments', 'label': 'comments'}, {'name': 'icons', 'label': ''}]}, {'regionName': 'footer2', 'items': [{'name': 'labels', 'label': 'Labels:'}]}, {'regionName': 'footer3', 'items': [{'name': 'location', 'label': 'Location:'}]}], 'allBylineItems': [{'name': 'author', 'label': 'Posted by'}, {'name': 'timestamp', 'label': ''}, {'name': 'share', 'label': ''}, {'name': 'comments', 'label': 'comments'}, {'name': 'icons', 'label': ''}, {'name': 'labels', 'label': 'Labels:'}, {'name': 'location', 'label': 'Location:'}]}, {'title': '', 'type': 'PopularPosts', 'sectionId': 'page_body', 'id': 'PopularPosts1', 'posts': [{'title': 'Here Is A Mere $7 USB PC Powered By Linux!', 'id': 4888775119137775881}, {'title': 'iOS 6 Jailbreak: How To Downgrade iOS 6.0.1 To iOS 5.1.1 Using Redsn0w On A4 Devices [Tutorial]', 'id': 2352042584855099136}]}, {'type': 'Attribution', 'sectionId': 'footer', 'id': 'Attribution1'}, {'title': 'Contributors', 'type': 'Profile', 'sectionId': 'sidebar', 'id': 'Profile1'}, {'type': 'BlogArchive', 'sectionId': 'sidebar', 'id': 'BlogArchive1'}, {'title': 'Labels', 'type': 'Label', 'sectionId': 'sidebar', 'id': 'Label1'}, {'title': '', 'type': 'ReportAbuse', 'sectionId': 'sidebar', 'id': 'ReportAbuse1'}]}]); _WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'search_top', document.getElementById('BlogSearch1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'page_list_top', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/', 'title': 'Home'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/the-houlden-report.html', 'id': '8038307898868259324', 'title': 'The HOULDEN Report'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/mikes-page.html', 'id': '6830246293782151702', 'title': 'Mike\x27s Page'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/classic-pcs.html', 'id': '2572519515466474726', 'title': 'CLASSIC PCs'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/comics-corner.html', 'id': '145400339593216055', 'title': 'The COMICS CORNER'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/technologies-in-medicine.html', 'id': '6071669244473962843', 'title': 'Technologies in medicine'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/product-rating.html', 'id': '3309550648763499868', 'title': 'Product Rating..'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/help-desk.html', 'id': '5987611306494090969', 'title': 'The Help Desk'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/entertainment.html', 'id': '2635452992905342930', 'title': 'Entertainment'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/gamers-widgets.html', 'id': '8903683345400007097', 'title': 'Gamers Widgets'}, {'isCurrentPage': false, 'href': 'https://mikehoulden.blogspot.com/p/from-head-bloggert.html', 'id': '608326200735348819', 'title': 'From The Head Blogger'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeaturedPostView', new _WidgetInfo('FeaturedPost1', 'page_body', document.getElementById('FeaturedPost1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'page_body', document.getElementById('AdSense1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'page_body', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3301882144-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/123180807-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'page_body', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar', document.getElementById('Label1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ReportAbuseView', new _WidgetInfo('ReportAbuse1', 'sidebar', document.getElementById('ReportAbuse1'), {}, 'displayModeFull')); </script> </body> </html>