i3 is a tiling window manager designed for X11, inspired by wmii and written in C. It supports tiling, stacking, and tabbing layouts, which it handles dynamically.
Configuration is achieved via plain text file and extending i3 is possible using its Unix domain socket and JSON based IPC interface from many programming languages.
Step 2: Write ISO image to USB drive using program Etcher:
Step 3: Install Debian 10 on your PC.
Don’t install any other programs and desktop environments, uncheck all check boxes in installation menu. You need clear operating system without any other software.
Installation i3wm and other software:
Now you have clear oerating system with command shell.
First authorize in system with root login, change repositories to testing branch in file /etc/apt/sources.list, it is needed to get latest packages:
Upgrade your system:
apt update
apt upgrade
Install sudo and add sudo privilegies to your username:
apt install sudo
usermod -aG sudo username
Now you can logout from user root and authorize with your username login, Install file manager MC and other additional software:
sudo apt install mc vim htop screenfetch
Install X-Window-Server, I3, and other software for desktop environment:
PulseAudio is a network-capable sound server program. A sound server is a background process accepting sound input from one or more sources (processes, capture devices, etc.), that is able to mix and redirect those sources to one or more sinks (sound cards, remote network PulseAudio servers, or other processes).
To install PulseAudio on Debian Linux first update package repository:
sudo apt update
Next install PulseAudio:
sudo apt install pulseaudio
Now reboot your computer.
Using PulseAudio Volume Control Graphical Utility:
PulseAudio has a graphical frontend PulseAudio Volume Control, which you can use to easily configure PulseAudio sounds graphically.
It is not installed by default. Run the following command to install PulseAudio Volume Control:
sudo apt install pavucontrol
Also to change sound volume by hotkeys you need amixer utility install it by command:
Visual Studio Code is a very powerful free and open source text editor, but before start usage it you need to but to use all its features, you need to configure it.
Visual Studio Code
First of all disable telemetry collection in File > Preferences > Settings menu:
To flush DNS cache in Debian GNU/Linux use command:
sudo systemd-resolve --flush-caches
If you get error message: “Failed to flush caches: Unit dbus-org.freedesktop.resolve1.service not found.“, enable the service on your system:
sudo systemctl enable systemd-resolved.service
Then again run the “systemd-resolve –flush-caches” command.
You can then check the statistics in order to make sure that your cache size is now zero, thus cleared. Run the following command in order to view the statistics:
Vim is the most popular Linux text editor, it was created in 1978 and is used to present days.
Vim has two modes: “Command mode” where you can insert many commands, and “Insert mode” – where you can insert and edit text document. By default Vim open all documents in “Command mode”, to enter into the “Insert mode” – press button “i“.
The most asked question is – “How to exit Vim?” – it is very simple – in Command mode enter :q! and press Enter. This command exit Vim without saving any changes.
:q!
To save file – enter command :w <filename> and press Enter:
:w file.txt
To save file and exit Vim use command :wq and press Enter