Skip to content

Antix Linux my Way

This guide will walk you through my Antix Linux Environment Optimized for Productivity

Chezmoi Way (Automatic)

Just Run this One liner. this Install Chezmoi configured with my Dotfile Git Repo

sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply keshav-writes-code

Startup Settings

Grub

  • Change the Grub Timeout
  1. Edit /etc/defaults/grub file add change the
    /etc/defaults/grub
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_TIMEOUT=0
    GRUB_DISTRIBUTOR=`grep PRETTY_NAME /etc/lsb-release | cut -d= -f2 | cut -d\" -f2 2> /dev/null || echo Debian`
    GRUB_CMDLINE_LINUX_DEFAULT="quiet selinux=0"
    GRUB_CMDLINE_LINUX=""
  2. Update grub
    Terminal window
    sudo update-grub

Disks Automount

  • Change all the Disk configurations to get Automount functionlaity
  1. Edit /etc/fstab file add change defaults keyword after Filesystem format (ntfs, ext4 etc) for the Disks you want to Automount
    /etc/fstab
    UUID=C45E5BF55E5BDEA /media/C45E5BF55E5BDEAC ntfs-3g users,noauto,noexec,uid=1000,gid=users,dmask=002,fmask=113 0 0
    UUID=C45E5BF55E5BDEA /media/C45E5BF55E5BDEAC ntfs-3g defaults 0 0