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
Sharing Linux with a friend
I volunteer with Meals on Wheels once a week, and one of the clients on my route is a man...
Exploring Ollama and Llama 3.1 for Advanced Language Modeling
Everywhere you look, someone is talking or writing about artificial intelligence. I have been keenly interested in the topic since...
Heading to the Beach
Tomorrow, Saturday as I write this, we’ll be heading to Atlantic Beach, our current favorite. By then time you read it, we’ll be there enjoying the amazing views including the one in the picture above. We do this every year.
To make my computing life as seamless as possible, I take my laptop. I always sync my home directory from my primary workstation to my laptop, named Voyager3 or vgr3 for short.
Easy File Management with Thunar
Computers are all about files. Linux itself is a collection of many files; application programs like LibreOffice are made up of many files; and the documents, spreadsheets, financial data, photos, videos, audio, and more that you use are all files. Working with files is a very important part of your work as a user.
This article introduces the use of the Thunar graphical file manager for managing files.
Setting the status line for the Screen program
In my recent article about the Screen program, I mention that one of the best things about the Screen program is that it gets out of the way and lets you just do your work. As a result, there may be no on-screen indication that you’re in a Screen session. That can cause a bit of bother.
I decided to investigate. What I found is interesting.
Using the screen command for flexibility
You might at first think of “screen” as the device on which your Linux desktop is displayed. That is one...