April 27, 2024
Things to Do After Installing Ubuntu GNOME 24.04 LTS # Check and Install Package Updates # Apt:
sudo apt update && sudo apt list --upgradable && sudo apt upgrade && sudo apt autoremove Nala:
sudo nala update && sudo nala list --upgradable && sudo nala upgrade && sudo nala autoremove Aptitude:
sudo aptitude update && sudo apt list --upgradable && sudo aptitude upgrade && sudo apt autoremove Install Software and Tools: # sudo apt install \ nano \ nala \ aptitude \ git \ wget \ curl \ mc \ copyq \ filezilla \ neofetch \ remmina \ inxi \ make \ htop \ gnome-sushi \ zsh \ duf \ powerline \ fonts-powerline System Tuning # sudo apt install gnome-system-tools dconf-editor gnome-tweaks chrome-gnome-shell gnome-shell-extensions Installing additional support for archivers # sudo apt install p7zip-rar rar unrar unace arj cabextract Google Chrome # https://www.
...
April 14, 2024
Audio and Video # Audio # DeaDBeeF # https://deadbeef.sourceforge.io/download.html https://github.com/DeaDBeeF-Player/deadbeef DeaDBeeF is a multiple-platform music player for desktop operating systems.
MP3Gain # MP3Gain analyzes and adjusts mp3 files so that they have the same volume.
sudo apt install mp3gain mp3gain -r -d 3 -p *.mp3 How to convert MP3 ID3 tag encodings # https://www.xmodulo.com/convert-mp3-id3-tag-encodings-linux.html Install mid3iconv on Linux # The mid3iconv tool is part of python3-mutagen package, which is universally available on major Linux platforms.
...
October 28, 2023
Nala - альтернативный пакетный менеджер в Ubuntu и Linux Mint # Nala - бесплатный и открытый альтернативный интерфейс к APT (который, сам по себе, является интерфейсом к DPKG). Nala может делать (почти) все то, что может APT (она все еще, в основном, взаимодействует с ним), а также немного больше.
Дополнительные команды Nala # Nala совместим с большинством команд APT, с которыми вы уже знакомы. Просто замените APT на Nala, чтобы их запустить.
...
April 29, 2023
Things to Do After Installing Ubuntu GNOME 22.04 LTS # Check and Install Package Updates # sudo apt update && sudo apt list --upgradable && sudo apt upgrade && sudo apt autoremove sudo nala update && sudo nala list --upgradable && sudo nala upgrade && sudo nala autoremove sudo aptitude update && sudo apt list --upgradable && sudo aptitude upgrade && sudo apt autoremove Enabling SSH # sudo apt install openssh-server sudo systemctl enable ssh sudo systemctl start ssh sudo systemctl status ssh sudo ufw allow ssh My Software and Tools # sudo apt install \ nano \ nala \ git \ wget \ curl \ mc \ copyq \ filezilla \ neofetch \ remmina \ inxi \ make \ htop \ gnome-sushi \ aptitude \ zsh \ powerline \ fonts-powerline System Tuning # sudo apt install gnome-system-tools dconf-editor gnome-tweaks chrome-gnome-shell gnome-shell-extensions Installing additional support for archivers # sudo apt install p7zip-rar rar unrar unace arj cabextract Show the Trash icon on the desktop # gsettings set org.
...
April 29, 2023
Things to Do After Installing Ubuntu GNOME 22.04 LTS # Extensions # code --install-extension BeardedBear.beardedicons code --install-extension christian-kohler.path-intellisense code --install-extension DEVSENSE.composer-php-vscode code --install-extension DEVSENSE.phptools-vscode code --install-extension DEVSENSE.profiler-php-vscode code --install-extension diz.ecsstractor-port code --install-extension formulahendry.vscode-mysql code --install-extension itsjonq.vs-plus-plus code --install-extension jakebathman.mysql-syntax code --install-extension miguelsolorio.fluent-icons code --install-extension naumovs.color-highlight code --install-extension nespinozacr.mysql-autocomplete code --install-extension PKief.material-icon-theme code --install-extension pranaygp.vscode-css-peek code --install-extension prasadbobby.auto-rename-tag code --install-extension qufiwefefwoyn.kanagawa code --install-extension RapidAPI.vscode-rapidapi-client code --install-extension rapidapi.vscode-services code --install-extension ritwickdey.
...
April 11, 2023
Create .Desktop Files With a Third-Party Program # https://www.florian-diesch.de/software/arronax/ sudo add-apt-repository ppa:diesch/stable sudo apt install arronax Create Desktop Launchers # application-name.desktop # [Desktop Entry] Encoding=UTF-8 Version=1.0 Type=Application Terminal=false Exec=/path/to/executable Name=Name of Application Icon=/path/to/icon Path (user only) # ~/.local/share/applications/ Path (global) # /usr/share/applications/
October 13, 2022
For Ubuntu 22.04 LTS:
Open Terminal with Ctrl-Alt-T Install dconf-tools: sudo apt-get install dconf-tools Open dconf-editor using dconf-editor command.
Go to org/gnome/nautilus/list-view/default-visible-columns. There you can edit the custom value field with the name of the columns you would like to be as the default view for all your folders.
My Custom value;
['name', 'size', 'owner', 'group', 'permissions', 'date_modified', 'starred'] Names of the columns from the nautalius project:
...