Category Archives: Linux

Multi-hop SSH Connection

The case is as follows: You have a server, let’s name it “server2” that you need to SSH to, but unfortunately this server is not directly accessible, as you can SSH to it only through another server, let’s call it … Continue reading

Posted in Linux, Uncategorized | Tagged , , , | Leave a comment

The Fastest Way to Download a Website Offline

One Word & One Command: HTTrack, that’s the word To install it on Ubuntu: sudo apt install httrack Then, to run it: httrack http://www.xyz.com –max-rate=1000000000 –sockets=50 –disable-security-limits –display –max-rate is the download rate where 1000 = 1 KB/sec, so I am … Continue reading

Posted in Linux, Uncategorized | Tagged , , , | Leave a comment

How to mount a file created using dd command

I created an exact copy of a bootable USB drive using the dd command (which is an extremely cool tool by the way) using the following command: dd if=/dev/sdb of=myFile.img After that, to mount it, you can simply use the … Continue reading

Posted in Linux, Ubuntu | Tagged , , , | Leave a comment

How to reset your administrative user password in ubuntu

It’s useful in case you forget your password and unable to access your system. All you have to do is: startup your machine and select the kernel that you use at the grub menu press e to start editing Find … Continue reading

Posted in Linux, Mint, Ubuntu | Tagged , , , | Leave a comment

Monitor Linux CPU Frequency in RealTime

watch grep \”cpu MHz\” /proc/cpuinfo Source

Posted in Linux | Tagged , , | 1 Comment