Howto debian12: Difference between revisions

From Vidalinux Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
install useful gui tools:  
install useful gui tools:  
  sudo apt -y install gparted transmission-gtk vlc pavucontrol geany gimp inkscape audacity filezilla leafpad
  sudo apt -y install gparted transmission-gtk vlc pavucontrol geany gimp inkscape audacity filezilla leafpad
= addional cli tools =
= addional cli tools =
install adddional cli tools:  
install adddional cli tools:  
  sudo apt -y install ffmpeg default-jdk git wget nano vim htop locate p7zip p7zip-full rar zip unzip
  sudo apt -y install ffmpeg default-jdk git wget nano vim htop locate p7zip p7zip-full rar zip unzip
= system clock =
install chrony:
sudo apt -y install chrony
start and enable chrony:
sudo systemctl start chrony && systemctl enable chrony
list available timezone:
sudo timedatectl list-timezones
configure timezone and enable ntp synchronization:
sudo timedatectl set-timezone Africa/Nairobi --adjust-system-clock
sudo timedatectl set-ntp yes
= flatpak =
= flatpak =
enable flatpak:
enable flatpak:

Revision as of 01:06, 6 September 2023

enable sudo

login as root:

su -

add your user to sudo group:

gpasswd -a user sudo

update system

update your system to latest:

sudo apt update && sudo apt -y upgrade

non-free repos

login as root:

sudo su -

configure non-free repos:

cat >> /etc/apt/sources.list << EOF
deb http://deb.debian.org/debian bookworm non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm non-free non-free-firmware

deb http://deb.debian.org/debian-security bookworm-security non-free non-free-firmware
deb-src http://deb.debian.org/debian-security bookworm-security non-free non-free-firmware

deb http://deb.debian.org/debian bookworm-updates non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm-updates non-free non-free-firmware
EOF

update repos:

apt update

addional gui tools

install useful gui tools:

sudo apt -y install gparted transmission-gtk vlc pavucontrol geany gimp inkscape audacity filezilla leafpad

addional cli tools

install adddional cli tools:

sudo apt -y install ffmpeg default-jdk git wget nano vim htop locate p7zip p7zip-full rar zip unzip

system clock

install chrony:

sudo apt -y install chrony 

start and enable chrony:

sudo systemctl start chrony && systemctl enable chrony

list available timezone:

sudo timedatectl list-timezones

configure timezone and enable ntp synchronization:

sudo timedatectl set-timezone Africa/Nairobi --adjust-system-clock
sudo timedatectl set-ntp yes

flatpak

enable flatpak:

sudo apt update && apt sudo -y instal flatpak

configure gnome software flatpak plugin:

sudo -y apt install gnome-software-plugin-flatpak

enable flatpak repo:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

more on flatpak commands:

https://wiki.vidalinux.org/index.php/Howto_flatpak

dev tools

install developer essentials tools:

sudo apt -y install build-essential

gnome extensions

install gnome extensions manager:

sudo apt -y install gnome-shell-extension-manager

references