Debian
Jump to navigation
Jump to search
Debian 11 (Bullseye) running its default desktop environment, GNOME version 3.38 | |
| Developer | The Debian Project |
|---|---|
| OS family | Unix-like |
| Working state | Current |
| Source model | Open source |
| Initial release | September 1993 |
| Latest release | 10.10 (Buster)[1] (June 19, 2021) [±] |
| Latest preview | 12 (Bookworm)[2] |
| Available in | 75 languages |
| Update method | Long-term support in stable edition, rolling release in unstable and testing editions |
| Package manager | APT (front-end), dpkg |
| Platforms | x86-64, arm64, armel, armhf, i386, mips, mipsel, mips64el, ppc64el, s390x,[3] riscv64 (in progress)[4] |
| Kernel type | Linux kernel |
| Userland | GNU |
| Default user interface | |
| License | DFSG-compatible licenses |
Debian run after install
- INSTALL ENCRYPTED DEBIAN
Install Debian with LUKS encrypted partitions
- PREPARE DEBIAN VIRTUAL
apt install figlet fortunes screen dnsutils net-tools iptables-persistent linux-headers-$(uname -r) build-essential gcc make perl dkms wget gnupg2
- PREPARE DEBIAN REAL
apt install figlet fortunes screen dnsutils net-tools iptables-persistent linux-headers-$(uname -r) build-essential gcc make perl dkms wget gnupg2 ifenslave-2.6
- PREPARE DEBIAN FOR HTTP-SQL-PHP
apt install apache2 php php-bcmath php-xml php-common php-imap php-intl php-json php-mbstring php-oauth php-soap php-sqlite3 php-xmlrpc php-zip
- ↑ "Updated Debian 10: 10.10 released". Debian News. Debian. June 19, 2021. Retrieved June 19, 2021.
- ↑ "Debian Release Notes". debian.org. Archived from the original on August 14, 2021. Retrieved August 14, 2021.
- ↑ "Debian -- Ports". Archived from the original on November 22, 2016. Retrieved May 26, 2014.
- ↑ "RISC-V - Debian Wiki". Archived from the original on March 20, 2018. Retrieved January 24, 2018.
move /var folder to separated location:
-check disk is avaliable:
- # lsblk
-partition disk:
- # fdisk /dev/xvdb
- # mkfs.ext4 /dev/xvdb1
-create tmp mount folder:
- #mkdir /var-new
-get block id and add to /etc/fstab
- # blkid
-mount partition
- #mount -a
-check:
- # df -h
-create new folder and copy /var into:
- # cd /var-new/
- # cp -rp /var/* .
- # ls -la
-change /var folder:
- # cd /
- # ls -la
- # mv /var /var-old
-unmount partition and rename folder:
- # umount /var-new
- # mv /var-new /var
-modify /etc/fstab
-reboot
-check:
- # df -h
done!