Download problems with “Using and Administering Linux – Zero to SysAdmin” files
Some files for experiments do not download properly
It was brought to my attention by reader Benjamin Robertson that experiments that use the wget command to download files from GItHub result in unusable files. This is due to an error in the URL and can easily be corrected.
For example, the command:
wget https://github.com/Apress/using-and-administering-linux-volume-2/blob/master/Experiment_6-1.txt
Should be:
wget https://github.com/Apress/using-and-administering-linux-volume-2/raw/master/Experiment_6-1.txt
Note that /blob/ should be changed to /raw/ in the above URL as well as others that use the wget command. The known instances of this problem are in:
- Volume 1, Experiment 12-1
- Volume 2, Experiment 6-1
- Volume 2, Experiment 6-3
- Volume 2, Experiment 17-1
- Volume 3, Experiment 17-1
This problem does not occur when the wget command is used with other sites such as RPMFusion and WordPress. It only occurs with GitHub.
I apologize for any problems this has caused you. I am working with Apress to determine why this problem has just shown up.
More Stories
Linux signals — sending system-level commands to programs
A user and SysAdmin guide Let's say you've got a program running that you want to terminate. Or that you...
How Markdown empowers technical writers
I've long been a writer, but writing and publishing have been challenging. Pencil or pen and paper and then endless...
How I find and kill rogue programs
As useful and important as Firefox is to my ability to interact with the outside world, create on this website,...
Managing processes with kill and killall
Process management can be an important part of system maintenance.
Print double-sided documents with this Bash script
Use Bash to print 2-sided documents on a printer that can only print on one side.
Another reason I like Linux
I like and prefer Linux for may reasons. Today provides one example. I like to install updates on all my...