Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

Capslock Indicator in Ubuntu

Very useful if you don’t have a led on your laptop indicating whether the caps lock key is turned on or off: “sudo apt-get install lock-keys-applet” “killall gnome-panel” Right click the panel, click “Add to panel” and then choose the … Continue reading

Tagged , , | Leave a comment

Access shared-folder in Ubuntu host from Ubuntu guest in Virtualbox

This is the scenario that you run Ubuntu as your host operating system and Ubuntu guest in VirtualBox, and that you want to access a specific folder from Ubuntu host. First you have to make sure that have install Guest … Continue reading

Tagged , , | Leave a comment

A complete invisibility – anonymity – solution for Ubuntu

Based on some online articles and my previous posts, I created the following script which does the following: Generates and assigns a random MAC address to my wired card (eth0) and wireless card (wlan0) using the macchanger software described here … Continue reading

Tagged , , , | Leave a comment

Delete the last line in a text file using sed

sed -i ‘$d’ hobba -i: to change the file itself, not copy contents to another file or something$d: delete the last linehobba: the file name

Tagged , | Leave a comment

Insert a "new line" character in a text file using Bash

“echo -e “192.168.100.100\n192.168” >> hobba“  The ‘-e’ option does the magic, as it allows escape characters to be printed Source

Tagged | Leave a comment