arch-linux

Mounting Google Drive on Arch Linux

April 14, 2023(August 23, 2023)
google-drive, opam, arch-linux

In this note, I will share my personal experience on how to mount Google Drive on Arch Linux using google-drive-ocamlfuse. Install opam # First, I need to install opam using the following command: sudo pacman -S opam Initialize opam # Next, I initialize opam with this command: opam init Install google-drive-ocamlfuse # After initializing opam, I install google-drive-ocamlfuse with the following commands: eval $(opam env) opam install google-drive-ocamlfuse Append environment variable # I add the following lines to ~/. ...

Sway Desktop Environment in Arch Linux

October 19, 2022(August 24, 2023)
sway, arch-linux

This note is recorded when I configure Arch Linux with sway Desktop Environment. User # “User” section operations are performed on the root account. Create general user # Add general user: useradd -m -G wheel "user name" Set up a password: passwd "user name" Enable Sudo # Enable sudo on wheel group. EDITOR=vim visudo To allow members of group wheel sudo access: %wheel ALL=(ALL:ALL) ALL Subsequent operations are performed by the created general user. ...

i3 Desktop Environment in Arch Linux

August 23, 2022(August 23, 2023)
arch-linux

Important I have not maintained this page since we moved from i3 to sway. We recommend the following sway page. sway Desktop Environment in Arch Linux This note is recorded when I configure Arch Linux with i3 Desktop Environment. User # “User” section operations are performed on the root account. Create general user # Add general user: useradd -m -G wheel "user name" Set up a password: passwd "user name" Enable Sudo # Enable sudo on wheel group. ...

How to install Arch Linux

August 21, 2022(August 23, 2023)
arch-linux

This note is recorded when I install Arch Linux. Pre-installation # Download Image # Visit the Download Page, download the ISO file and write down the MD5 checksum. # file archlinux-_version_-x86_64.iso Verify md5 checksum # Calculate MD5 checksum of ISO file. md5sum archlinux-_version_.x86_64.txt # 0e9943a96f8298abb0db5e64f76ad0be archlinux-2022.08.05-x86_64.iso Confirm that the md5 checksum I wrote down is the same as the md5 checksum I calculated. Create Live USB # Create live USB according to USB flash installation medium. ...