I recently purchased a power line network adapter and wanted to see how it performed relative to the stated specs on the packaging. After playing around with wget and sftp to copy files from my desktop to my laptop I wondered if there was a better way to test network speed without involving the hard …
Continue reading Linux Network Speed Testbash
I’ve always wanted to know how to create command line options for my Bash scripts. After some research I found there are two functions available to handle this; getopt and getopts. I’m not going to get into the debate about which one is better. getopts is a shell builtin and seems a little easier to …
Continue reading Bash Getopts – Scripts with Command Line OptionsThere are several log files in a Linux system. Keeping an eye on these log files can be one of the important tasks of a Linux System administrator. You can easily view the end of a log file using the tail command. But if you want to monitor that file all day long it’s pretty …
Continue reading Command Line Basics – watchMy main computer at home acts as a file and media server for the whole house, so it’s pretty much turned on all the time. There are times when I’m away from home that I want to remotely access or download a file from my home computer. My home internet service uses a dynamic IP …
Continue reading Keeping Track of My IP AddressIf you’ve been using Linux for a while, you may be familiar with the terminal command, date. The date command will display the current date and time to the terminal. On my system, the default output of date looks like this:
Continue reading Creating A Terminal Window Clock