Offline Installation
๐ฅ๏ธ How to Install Snigdha OS in Offline Modeโ
Installing Snigdha OS in offline mode means performing the installation without an active internet connection. While Snigdha OS's installation typically requires an internet connection to fetch updates and additional packages, itโs still possible to install it offline using the installation ISO and pre-downloaded packages. This method is especially useful if you're in an environment with limited or no internet access.
Here's a step-by-step guide to install Snigdha OS in offline mode:
๐ฅ Step 1: Download Snigdha OS ISOโ
-
Go to the Official Snigdha OS Website:
Visit the Snigdha OS download page: -
Download the ISO File:
Select your preferred edition (KDE, GNOME, etc.) and download the ISO file. This will be used to create the bootable USB. -
Optionally Download Extra Packages:
If you know you will need additional packages (like drivers or software that may not be included in the ISO), itโs a good idea to download them beforehand using another system that has internet access. You can use a tool like Pacman to download packages:sudo pacman -Sw package_name
๐พ Step 2: Create a Bootable USB Driveโ
You need a bootable USB to install Snigdha OS. Use Ventoy or Rufus (for Windows) or the dd
command (for Linux) to create a bootable USB drive.
For Linux Users (Using dd
)โ
-
Insert USB Drive: Plug in a USB drive (at least 4 GB).
-
Find USB Drive Location: Use the
lsblk
command to identify your USB drive:lsblk
-
Create Bootable USB: Run the
dd
command to copy the Snigdha OS ISO to your USB drive (replace/dev/sdX
with your USB device path):sudo dd if=snigdhaos-YYYY.MM.DD-x86_64.iso of=/dev/sdX bs=4M status=progress oflag=sync
-
Eject USB: After the process finishes, safely eject the USB:
sudo eject /dev/sdX