I have a question buzzing in my mind: Any tips on where a first-year uni student can snag a second-hand or donated laptop for their studies? 🤔
*Know of any awesome orgs or programs helping out?
This was an interesting chapter demonstrating how to use variables to control the look and feel of the system.
Looking forward to Chapter 8: Bash Scripting😎
Done with Chapter 7.
The chapter gave a brief introduction to variables, differentiating between Environment Variables and User Variables.
Variables are basically strings in key-value pairs: KEY=value.
An example of a variable is the PATH variable, which I've encountered multiple times in the past without really understanding what it does🤔
We can view the contents of a variable using the echo command.
echo $PATH will display the list of directories found in the PATH variable
I always enjoy running the commands in my shell and seeing the output, even though somethings look like gibberish🫣
On to chapter 7 which covers variables😎
Continuing to learn Linux.
This was an interesting chapter about managing processes. It covers how to:
- view processes with the ps command and aux options.
- filter search results with grep to find a particular process.
- discover which processes are using the most resources with the top command
- prioritize processes with the nice command
- kill processes using the kill command and signals such as SIGKILL, SIGTERM, etc.
- scheduling processes using the at daemon.