Skip to main content

Posts

Showing posts from May, 2023

Overview to an VIM editor

  Vim is a versatile text editor that can be used for a wide range of tasks. Its power and flexibility make it a popular choice among developers, system administrators, writers, and anyone who works extensively with text files. Here are some common uses of Vim: Code Editing: Vim is often used by programmers for editing source code. Its syntax highlighting, code folding, and extensive keyboard shortcuts make it efficient for writing and editing code in various programming languages. Text File Editing: You can use Vim for editing plain text files, configuration files, log files, and more. Its search and replace functionality is particularly useful for making bulk changes in text documents. System Administration: System administrators often use Vim to edit configuration files, scripts, and other system-related text files on Linux and Unix-based systems. Writing and Note-taking: Some writers and note-takers prefer Vim for distraction-free writing. It offers features like spell-chec...

Perfect Minimalistic Arch Installtion by Ayu -/

  Follow these simple step and you'll have your playboy PC...     First make bootable drive of an Arch Linux (use Rufus) format in GPT style Then make sure you have UEFI mode enabled in BIOS Boot through your USB Now, check your internet connection using ping -c 3 google.com Check disks and partition lsblk Make Partition - cfdisk Make 3 partition, Let's suppose you have 200GB of Space then, you can make following parititon style 1G for /boot/efi parition ( 1G for multiple kernal ) - /dev/sda1 190G for root partition - /dev/sda2 9G for swap space - /dev/sda3 After making partition, Format it For boot partition - mkfs.fat -F32 /dev/sda1 For root partition - mkfs.ext4 /dev/sda2 For swap Partition - mkswap /dev/sda3 Now, update your pacman repository pacman -Syy Mounting Root and Swap partition System - Mount Root mount /dev/sda2 /mnt Install Base pacakges pacstrap -K /mnt base base-devel linux-lts linux-firmware amd-ucode sudo nano vi Configure the File system genfstab -U...