9
How to change directory and transfer files to USB with the command lineview story

http://www.linuxandlife.com – You will sometimes need to use the command line to access the USB and transfer files from or to it. This usually happens when something wrong happens to X or when you try to install everything from scratches like with Arch Linux. (Distributions)

9
How to use scrot - a command line tool to take screenshotview story

http://www.linuxandlife.com – There are many ways to take screenshots. In distros like Ubuntu, Mint or Fedora, the tool is either gnome-screenshot or mate-screenshot. You can also use more complicated tools like shutter or GIMP. They are good at what they do. (Distributions)

9
How to disable IPV6 in debianview story

http://www.debianadmin.com – This tutorial will explain how to disable IPV6 in debian. Open a terminal and su to root Now you need to check if iPV6 is active or not using the following command netstat -tunlp |grep p6 |wc -l If the result is anything other than 0, then one or more IPv6-aware processes is running. Disable using the following 3 commands echo net.ipv6.conf.all.disable_ipv6=1 > /etc/sysctl.d/disableipv6.conf s (Distributions)

9
How to locate and delete empty files and directoriesview story

http://www.linuxandlife.com – Chance is that there will be empty files (zero byte files) and empty directories (that doesn’t contain any files) in your system. In this article, I will show you how to locate these empty directories and files and delete them. The command you can use is the "find" command. To find empty directories in the current directory, you use the option -empty: find . (Distributions)

9
FreeBSD: Install sudo Command To Execute A Command As The Rootview story

http://www.cyberciti.biz – I have recently started to managing FreeBSD server along with Ubuntu Linux. However, sudo command, always shows me the following error:zsh: command not found: sudo How do I solve this problem and use sudo under FreeBSD 9.x system?Read answer to: "FreeBSD: Install sudo Command To Execute A Command As The Root"     (HowTos)

9
Linux: Sort du -h (human-readable) Output By Sizeview story

http://www.cyberciti.biz – I have a large number of files stored in ~/Downloads/ directory. How do I sort and print sizes in human readable format using du -h command under Ubuntu Linux LTS version 12.04 or any other Linux distributions?Read answer to: "Linux: Sort du -h (human-readable) Output By Size"     (HowTos)

8
Python Command Line Arguments Examplesview story

http://www.cyberciti.biz – I am a new Python programming user. (HowTos)

8
Linux command find usage confuseview story

http://stackoverflow.com – Today when I was using the "find" command. It is a little bit confusing on the usage. The problem: I want to count how many gz files under the main directory. However, the main dir also have sub directories. e.g. /mainDir/Dir1/1/ /mainDir/Dir2/1/2012. Under each sub folder, there are several gz files. I use command 1, it works fine. First I go the the main directory: ls -R . (HowTos)

8
How to get an InputStream via bluetooth and put in a Textview?view story

http://stackoverflow.com – This is my first question in SO. I am new (and excited) in Android programming and here is my PROBLEM: I am building a project using my android phone and a microcontroller. The microcontroller has a distance sensor and transmits its value. I have managed to get connected to the microcontroller and send correct signals, but I can't get the distance mesurment, or anything else. (HowTos)

8
warning: type qualifiers ignored on function return type in gcc 4.1.2view story

http://stackoverflow.com – I am using gcc 4.1.2 on Linux, and I encountered the following warning: warning: type qualifiers ignored on function return type I tried to use "-Wno-ignored-qualifiers" to get rid of this warning but it seems not supported: cc1: error: unrecognized command line option "-Wno-ignored-qualifiers" Is there a way to disable such warnings in gcc 4.1.2? Thanks a lot. (HowTos)