Linux Resources
Last updated
Was this helpful?
Last updated
Was this helpful?
Note that these suggestions are off the top of my head and surely biased by my own needs.
bash
shell basics
Navigating the shell.
Using one of the common editors, such as vim
, emacs
, or nano
. My personal favorite is vim
, but that's probably because I've been using it (or its predecessor, vi
) longer than most redditors have been alive.
Listing (ls
) and deleting (rm
) files.
Changing file permissions (chmod
).
Using the find
command.
Using basic Linux tools in pipelines, such as tr
, wc
, basename
, dirname
, etc.
Using awk
/gawk
. This tool is so incredibly powerful. I use it almost daily.
Using apt
. Note that apt-get
is the older package manager, and although it's largely compatible with apt
, there are some differences.
Programming
Learn the basics of bash
shell programming, including conditional statements, looping structures, variables, etc.
Definitely learn python
, with a focus on python3
.
php: see Web Dev below.
Learning C and/or C++ are desirable too, but you don't need this skill immediately. However, knowing these languages will give you better knowledge for compiling packages and eventually writing your own.
Web servers
You won't go wrong with apache2
, but these days, I'm using nginx
more often.
Installing SSL/TLS certs.
Networking
Using iptables
to configure firewall rules.
Using ip route
to configure routes.