To pull the latest version of all your Docker images at once:
for docker in $(docker images | awk '{print $1,$2}' | sed 's/ /:/g' | grep -v REPOSITOR[......]
OpenSource software should be encouraged more…
Linux refers to the family of Unix-like computer operating systems using the Linux kernel.
To pull the latest version of all your Docker images at once:
for docker in $(docker images | awk '{print $1,$2}' | sed 's/ /:/g' | grep -v REPOSITOR[......]
To update all your pip-installed Python packages at once:
sudo pip install -U `pip list -o | cut -d ' ' -f1 | tr '\n' ' '`
This lists outdated packa[……]
I wanted to passthrough a dual tuner TV card (Hauppauge WinTV Nova-T-500) to an openVz container in order to use tvHeadEnd. The procedure should be th[……]
Remmina is a remote desktop client that supports multiple network protocols — RDP, VNC, NX, XDMCP and SSH — in a nice and very user-friendly GUI.
In i[……]
When you set up email forwarding or configure a new MTA, you will want to confirm it is working before relying on it for alerts. A quick test is all y[……]
If you run a public SSH server, you will see failed login attempts in your logs constantly. Fail2ban monitors those logs and adds firewall rules to bl[……]
I wrote before about sending system emails using sendmail as a smarthost. Here is an alternative approach using Gmail SMTP servers — often simpler to[……]
When you delete a file normally, the data stays on the disk — the filesystem just marks the space as available. The data can be recovered with the rig[……]
A humorous take on common Linux frustrations — a lighthearted look at what annoys even the biggest open source fans. :-)[……]
A humorous take on common Linux frustrations — a lighthearted look at what annoys even the biggest open source fans. :-)[……]
When you need to format a partition from the command line, a few commands are all you need. Here’s the typical workflow.
First, create the files[……]