Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

$@ is not "$@"

when you want to pass multiple parameters through you shell script, you use $@ex: #! /bin/shecho $@ and then execute this file: ./script1 hello world the script will prints “Hello world” But be ware, $@ is not “$@” !! The … Continue reading →

Tagged | Leave a comment

Restarting USB Storage Modules in Ubuntu

“sudo modprobe -r usb_storage““sudo modprobe usb_storage“It’s only because I had a problem in mounting any USB storage, it happened with me onceand I had to restart my machine, and I hate having to do so 🙂Source

Tagged , , | 1 Comment

Download Videos From YouTube using Ubuntu

A very nice command-line tool that allows you to download videos from Youtube: “sudo apt-get install youtube-dl” After the installation process, run: “youtube-dl video_url“

Tagged , , | Leave a comment

Stop YouTube from autoplaying a video when opened

A very nice plugin for Google Chrome (or Chromium) that allows you to open as much videos as you want without them playing automatically where you must open each video and pause it yourself. The surprise is: It’s pre-buffering 🙂 … Continue reading →

Tagged , , , | 1 Comment

Setup an SSH/SFTP Server on Ubuntu

“sudo apt-get install openssh-server“ That’s it, you can now connect to your machine via SSH/SFTP from any other machine on the same network, it’s easy, fast and secure.

Tagged , , , | Leave a comment