I. Installation OpenSSH Install on Ubuntu client:
sudo apt install openssh-client Install OpenSSH on server in VirtualBox:
sudo apt install openssh-server II. Inspect OpenSSH Basic checking command OpenSSH:
sudo systemctl start ssh sudo systemctl stop ssh sudo systemctl restart ssh sudo systemctl status ssh Install Netstat:
sudo apt install net-tools Run command below for showing all port connection:
sudo netstat -tulpn Sample result OpenSSH listening to port 22:
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0....
In this tutorial we send files from Linux Operating System to Windows or Linux in Virtualbox.
I. Configure VirtualBox Configure Virtualbox Image
Choose Operating System in VirtualBox. Click Settings menu. Choose Shared Folders tab. Click Adds new shared folder at the right window. Add Share Pop up will show . In the Folder Path, choose directory that use as sharing directory. Folder Name is the directory that we will use. Gift a check at Auto Mount....
I. Installation sudo apt-get install ffmpeg II. First Way Use This way the video is cut and converted into a gif.
Cut the video to be in accordance with the duration we want:
ffmpeg -i original.mp4 -ss 00:03:20 -c copy -t 00:00:30 output.mp4 Notes:
-i: Input file. original.mp4: Video name. -ss: Create video from minute 00:03:20. -t: Video duration is 30 seconds. output.mp4: Name of new video. Change the video whose duration we have set into a Gif....
Here’s how to format a Flash Drive using the Command Line in Linux Terminal.
I. Identify the location of The Flash Drive installed in the linux system lsblk The result is:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 111,8G 0 disk ├─sda1 8:1 0 549M 0 part ├─sda2 8:2 0 56,3G 0 part └─sda3 8:3 0 55G 0 part / sdd 8:16 1 3,7G 0 disk └─sdd1 8:17 1 3,7G 0 part /media/helmiz/HELMI <<< My Flash Drive sr0 11:0 1 1024M 0 rom II....
The main requirements for the Linux Terminal to be used are Gnome Terminal, Pantheon Terminal, Tilix and XFCE4 Terminal.
I. Installation Pre-Install in ubuntu:
sudo apt-get install dconf-cli uuid-runtime Terminal with Bash:
bash -c "$(wget -qO- https://git.io/vQgMr)" Choose the number of color schemes:
█████████ █████ ███ ███ ███ ███ ██████ ███████ ███████ ███ ███ ███ ███ ███ ███ ███ ███ █████ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █████████ ██████ ███████ ████ █████ ████████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████████ Themes: ( 01 ) 3024 Day ( 02 ) 3024 Night ( 03 ) Aci ( 04 ) Aco ( 05 ) Adventuretime ....
In this tutorial I want to install Linux on my laptop using a flash drive. with dd command in the linux terminal. Here are the steps:
I. Identify the location of The Flash Drive installed in the linux system lsblk The result is:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 111,8G 0 disk ├─sda1 8:1 0 549M 0 part ├─sda2 8:2 0 56,3G 0 part └─sda3 8:3 0 55G 0 part / sdd 8:16 1 3,7G 0 disk └─sdd1 8:17 1 3,7G 0 part /media/helmiz/HELMI <<< My Flash Drive sr0 11:0 1 1024M 0 rom II....
The Steps Open terminal or console linux and type code below
sudo gedit /usr/share/applications/application_name.desktop Notes:
application_name: The application that we show in Application Menu. gedit: Text editor like nano/vi. Add Config to the text editor:
[Desktop Entry] Encoding=UTF-8 Exec=/home/helmiz/tools/eclipse/eclipse Icon=/home/helmiz/tools/eclipse/icon.xpm Type=Application Terminal=false Comment=Eclipse Integrated Development Environment Name=Eclipse 2019 GenericName=eclipse-2019-12-R StartupNotify=false Categories=Development;IDE;Java; Notes:
Exec: Path file where our application saved. Icon: Path file where our application icon saved. Name: Name of our application....