mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-05 19:06:37 +02:00
🚀 feat(new): update file
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "installation/offline_install",
|
||||
"title": "Offline Installation",
|
||||
"description": "",
|
||||
"description": "🖥️ How to Install Snigdha OS in Offline Mode",
|
||||
"source": "@site/docs/installation/offline_install.md",
|
||||
"sourceDirName": "installation",
|
||||
"slug": "/installation/offline_install",
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "installation/online_install",
|
||||
"title": "Online Installation",
|
||||
"description": "",
|
||||
"description": "🌐 How to Install Snigdha OS Online (With Internet Connection)",
|
||||
"source": "@site/docs/installation/online_install.md",
|
||||
"sourceDirName": "installation",
|
||||
"slug": "/installation/online_install",
|
||||
|
@@ -454,13 +454,13 @@
|
||||
"installation/offline_install": {
|
||||
"id": "installation/offline_install",
|
||||
"title": "Offline Installation",
|
||||
"description": "",
|
||||
"description": "🖥️ How to Install Snigdha OS in Offline Mode",
|
||||
"sidebar": "tutorialSidebar"
|
||||
},
|
||||
"installation/online_install": {
|
||||
"id": "installation/online_install",
|
||||
"title": "Online Installation",
|
||||
"description": "",
|
||||
"description": "🌐 How to Install Snigdha OS Online (With Internet Connection)",
|
||||
"sidebar": "tutorialSidebar"
|
||||
},
|
||||
"installation/start_installation": {
|
||||
|
@@ -373,7 +373,7 @@
|
||||
{
|
||||
"id": "installation/offline_install",
|
||||
"title": "Offline Installation",
|
||||
"description": "",
|
||||
"description": "🖥️ How to Install Snigdha OS in Offline Mode",
|
||||
"source": "@site/docs/installation/offline_install.md",
|
||||
"sourceDirName": "installation",
|
||||
"slug": "/installation/offline_install",
|
||||
@@ -400,7 +400,7 @@
|
||||
{
|
||||
"id": "installation/online_install",
|
||||
"title": "Online Installation",
|
||||
"description": "",
|
||||
"description": "🌐 How to Install Snigdha OS Online (With Internet Connection)",
|
||||
"source": "@site/docs/installation/online_install.md",
|
||||
"sourceDirName": "installation",
|
||||
"slug": "/installation/online_install",
|
||||
|
@@ -2,3 +2,152 @@
|
||||
sidebar_position: 4
|
||||
---
|
||||
# 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**
|
||||
|
||||
1. **Go to the Official Snigdha OS Website**:
|
||||
Visit the Snigdha OS download page:
|
||||
- [Snigdha OS Downloads](https://snigdhaos.org/downloads.html)
|
||||
|
||||
2. **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.
|
||||
|
||||
3. **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:
|
||||
```bash
|
||||
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`)**
|
||||
|
||||
1. **Insert USB Drive**:
|
||||
Plug in a USB drive (at least 4 GB).
|
||||
|
||||
2. **Find USB Drive Location**:
|
||||
Use the `lsblk` command to identify your USB drive:
|
||||
```bash
|
||||
lsblk
|
||||
```
|
||||
|
||||
3. **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):
|
||||
```bash
|
||||
sudo dd if=garuda-linux-YYYY.MM.DD-x86_64.iso of=/dev/sdX bs=4M status=progress oflag=sync
|
||||
```
|
||||
|
||||
4. **Eject USB**:
|
||||
After the process finishes, safely eject the USB:
|
||||
```bash
|
||||
sudo eject /dev/sdX
|
||||
```
|
||||
|
||||
#### **For Windows Users (Using Rufus)**
|
||||
|
||||
1. **Download and Install Rufus**:
|
||||
Download **Rufus** from [https://rufus.ie/](https://rufus.ie/) and install it.
|
||||
|
||||
2. **Open Rufus** and Select the USB Drive.
|
||||
|
||||
3. **Choose the Snigdha OS ISO** and select the appropriate **Partition Scheme** (usually **GPT** for modern systems).
|
||||
|
||||
4. **Start the Process**:
|
||||
Click **Start** to create a bootable USB. Wait for it to complete.
|
||||
|
||||
---
|
||||
|
||||
### 🔌 **Step 3: Boot into Snigdha OS Live Environment**
|
||||
|
||||
1. **Insert the Bootable USB** into the target system.
|
||||
|
||||
2. **Enter BIOS/UEFI**:
|
||||
Restart the system and press the appropriate key (often `F2`, `DEL`, or `ESC`) to enter BIOS/UEFI.
|
||||
|
||||
3. **Set USB as Primary Boot Device**:
|
||||
In the BIOS/UEFI settings, set the USB drive as the first boot device.
|
||||
|
||||
4. **Save and Reboot**:
|
||||
Save the changes and reboot the system. It will boot into the Snigdha OS live environment.
|
||||
|
||||
---
|
||||
|
||||
### ⚙️ **Step 4: Install Snigdha OS Offline**
|
||||
|
||||
1. **Launch the Installer**:
|
||||
In the live environment, click on the **Snigdha OS Installer** icon on the desktop or in the application menu.
|
||||
|
||||
2. **Select Language and Region**:
|
||||
Follow the prompts to select your language, region, and keyboard layout.
|
||||
|
||||
3. **Partitioning**:
|
||||
Choose the disk where you want to install Snigdha OS. You can either let the installer automatically partition your disk or choose manual partitioning for more control.
|
||||
|
||||
- **Btrfs** is the default filesystem used by Snigdha OS.
|
||||
- You can set up **LVM** or **ZFS** if you want advanced features.
|
||||
|
||||
4. **Offline Mode Warning**:
|
||||
The installer will ask for an internet connection to fetch updates and additional software. **Ignore this step** since you are installing in offline mode. Proceed without an internet connection.
|
||||
|
||||
5. **User Configuration**:
|
||||
- Set up your **username** and **password**.
|
||||
- Configure **root password** if required.
|
||||
|
||||
6. **Installation Location**:
|
||||
Confirm the partition where you want to install Snigdha OS. Double-check the partitions to avoid data loss.
|
||||
|
||||
7. **Begin Installation**:
|
||||
Click on the **Install** button to start the installation. The system will copy files from the ISO to the target disk.
|
||||
|
||||
---
|
||||
|
||||
### 🔄 **Step 5: Install Pre-Downloaded Packages (Optional)**
|
||||
|
||||
If you have pre-downloaded additional packages or software (like drivers, codecs, or essential tools), you can install them during or after the installation process:
|
||||
|
||||
1. **Mount the USB with Packages**:
|
||||
If the packages are on another USB or disk, you can mount it to the system during installation using the terminal.
|
||||
|
||||
2. **Use Pacman to Install Packages**:
|
||||
Once Snigdha OS is installed and you’ve booted into the system, use the `pacman` package manager to install any pre-downloaded packages:
|
||||
```bash
|
||||
sudo pacman -U /path/to/package_file.pkg.tar.zst
|
||||
```
|
||||
|
||||
Replace `/path/to/package_file.pkg.tar.zst` with the actual path to the downloaded package.
|
||||
|
||||
---
|
||||
|
||||
### ⚙️ **Step 6: Final Steps and Reboot**
|
||||
|
||||
1. **Configure Your System**:
|
||||
Once the installation is complete, you may need to configure your system settings, such as display resolution, Wi-Fi (if available), and user preferences.
|
||||
|
||||
2. **Reboot the System**:
|
||||
After installation, **reboot** your system and remove the USB drive.
|
||||
|
||||
3. **Boot into Snigdha OS**:
|
||||
Your system should boot into Snigdha OS. If you set up a **dual-boot** with other operating systems, you’ll see the bootloader menu to choose the OS.
|
||||
|
||||
4. **Offline Setup**:
|
||||
If you have any additional software or updates that need to be installed, you can use the **offline package manager** to install them later when you have an internet connection.
|
||||
|
||||
---
|
||||
|
||||
### 🎉 **Conclusion**
|
||||
|
||||
You’ve now installed Snigdha OS in **offline mode**! While some post-installation updates and software installation may require an internet connection, this method allows you to set up and use Snigdha OS in environments with no or limited internet access. This installation method is ideal for areas with poor connectivity, or for advanced users who want to configure their system fully offline.
|
||||
|
||||
Enjoy your new Snigdha OS setup! 😎🚀
|
@@ -3,3 +3,173 @@ sidebar_position: 5
|
||||
---
|
||||
|
||||
# Online Installation
|
||||
|
||||
### 🌐 **How to Install Snigdha OS Online (With Internet Connection)**
|
||||
|
||||
Snigdha OS is a powerful and feature-packed distribution, and the **online installation** method provides the easiest and most efficient way to install Snigdha OS. This method requires an active internet connection to download the latest updates, packages, and additional software during the installation process.
|
||||
|
||||
Here's a detailed step-by-step guide to install **Snigdha OS** using the **online installation** method:
|
||||
|
||||
---
|
||||
|
||||
### 📥 **Step 1: Download Snigdha OS ISO**
|
||||
|
||||
1. **Go to the Official Snigdha OS Website**:
|
||||
Visit the Snigdha OS download page:
|
||||
- [Snigdha OS Downloads](https://snigdhaos.org/downloads.html)
|
||||
|
||||
2. **Select Your Preferred Edition**:
|
||||
Snigdha OS offers various desktop environments like KDE, GNOME, XFCE, and more. Choose the one that suits your preference.
|
||||
|
||||
3. **Download the ISO File**:
|
||||
Click on the link for the desired edition to download the ISO file. The file will typically be named:
|
||||
- `snigdhaos-linux-YYYY.MM.DD-x86_64.iso`
|
||||
|
||||
---
|
||||
|
||||
### 💾 **Step 2: Create a Bootable USB Drive**
|
||||
|
||||
You’ll need to create a bootable USB to install Snigdha OS. You can use **Ventoy**, **Rufus** (for Windows), or **dd** (for Linux) to create the bootable USB.
|
||||
|
||||
#### **For Linux Users (Using `dd`)**
|
||||
|
||||
1. **Insert USB Drive**:
|
||||
Plug in a USB drive with at least 4 GB capacity.
|
||||
|
||||
2. **Identify USB Drive**:
|
||||
Use the `lsblk` command to identify the device (e.g., `/dev/sdX`):
|
||||
```bash
|
||||
lsblk
|
||||
```
|
||||
|
||||
3. **Create Bootable USB**:
|
||||
Run the following `dd` command to copy the Snigdha OS ISO to your USB (replace `/dev/sdX` with your USB device path):
|
||||
```bash
|
||||
sudo dd if=snigdhaos-linux-YYYY.MM.DD-x86_64.iso of=/dev/sdX bs=4M status=progress oflag=sync
|
||||
```
|
||||
|
||||
4. **Eject USB**:
|
||||
After the process is complete, safely eject the USB:
|
||||
```bash
|
||||
sudo eject /dev/sdX
|
||||
```
|
||||
|
||||
#### **For Windows Users (Using Rufus)**
|
||||
|
||||
1. **Download and Install Rufus**:
|
||||
Download **Rufus** from [https://rufus.ie/](https://rufus.ie/) and install it.
|
||||
|
||||
2. **Open Rufus** and Select the USB Drive.
|
||||
|
||||
3. **Choose Snigdha OS ISO** and Select the Partition Scheme:
|
||||
Choose **GPT** for UEFI-based systems and **MBR** for legacy BIOS systems.
|
||||
|
||||
4. **Start the Process**:
|
||||
Click **Start** to create the bootable USB. Wait until it’s done.
|
||||
|
||||
---
|
||||
|
||||
### 🔌 **Step 3: Boot Into Snigdha OS Live Environment**
|
||||
|
||||
1. **Insert the Bootable USB** into the computer where you want to install Snigdha OS.
|
||||
|
||||
2. **Enter BIOS/UEFI**:
|
||||
Restart the system and enter the BIOS/UEFI settings (usually by pressing a key like `F2`, `DEL`, or `ESC`).
|
||||
|
||||
3. **Set USB as the First Boot Device**:
|
||||
In the BIOS/UEFI settings, set the USB drive as the first boot device.
|
||||
|
||||
4. **Save and Reboot**:
|
||||
Save your settings and reboot the computer. It will boot into the Snigdha OS live environment.
|
||||
|
||||
---
|
||||
|
||||
### ⚙️ **Step 4: Start the Online Installation Process**
|
||||
|
||||
1. **Launch the Installer**:
|
||||
Once the system boots into the Snigdha OS live environment, you’ll see a **Snigdha OS Installer** icon on the desktop. Click it to begin the installation.
|
||||
|
||||
2. **Select Language and Region**:
|
||||
Choose your preferred language, region, and keyboard layout.
|
||||
|
||||
3. **Connect to the Internet**:
|
||||
- **Wi-Fi**: Click on the network icon in the system tray and select your Wi-Fi network.
|
||||
- **Wired Connection**: If you’re using a wired connection, the system should automatically connect to the internet.
|
||||
|
||||
4. **Choose Installation Type**:
|
||||
You’ll have two main options:
|
||||
- **Erase disk and install Snigdha OS**: Automatically partitions and installs Snigdha OS (use this if you want a clean install).
|
||||
- **Manual partitioning**: If you want more control over your partitions, select this option to manually create and set partitions.
|
||||
|
||||
---
|
||||
|
||||
### 💻 **Step 5: Partitioning and Disk Setup**
|
||||
|
||||
1. **Select the Disk**:
|
||||
Choose the disk where you want to install Snigdha OS.
|
||||
|
||||
2. **Automatic Partitioning (Recommended)**:
|
||||
- **Erase and Install**: Select this if you want to overwrite the entire disk with Snigdha OS.
|
||||
- **Manual Partitioning**: Select this if you want to set up partitions manually, allowing you to configure the disk layout.
|
||||
|
||||
3. **Filesystem Choices**:
|
||||
- Snigdha OS uses **Btrfs** by default. You can also select **ext4** or **LVM** if preferred.
|
||||
|
||||
4. **Confirm and Continue**:
|
||||
Confirm your partition settings and proceed. The installer will format the disk and prepare it for the installation.
|
||||
|
||||
---
|
||||
|
||||
### 🧑💻 **Step 6: User Configuration**
|
||||
|
||||
1. **Create Your User**:
|
||||
Set up your **username** and **password**. You’ll also need to set the **root password**.
|
||||
|
||||
2. **Timezone and Locale**:
|
||||
Choose your **timezone** and **locale**. The installer should detect your location automatically, but you can adjust it if needed.
|
||||
|
||||
---
|
||||
|
||||
### 🌐 **Step 7: Installing Snigdha OS**
|
||||
|
||||
1. **Download Updates and Packages**:
|
||||
Since you’re installing online, the installer will fetch the latest updates and packages during the process. This requires an active internet connection. The installer will download:
|
||||
- **System updates**
|
||||
- **Additional packages** (drivers, codecs, utilities, etc.)
|
||||
|
||||
2. **Begin Installation**:
|
||||
Click the **Install** button to start the installation process. Snigdha OS will now be installed on your disk. This process may take some time, depending on your internet speed and disk performance.
|
||||
|
||||
---
|
||||
|
||||
### 🔄 **Step 8: Finalize the Installation**
|
||||
|
||||
1. **Wait for Installation to Complete**:
|
||||
The installation process will copy files, install software, and configure the system. This may take 15-30 minutes or more, depending on your system and internet speed.
|
||||
|
||||
2. **Reboot the System**:
|
||||
Once the installation is complete, you’ll be prompted to reboot the system. Remove the installation USB stick and reboot into Snigdha OS.
|
||||
|
||||
3. **Boot into Snigdha OS**:
|
||||
Your computer will now boot into Snigdha OS. If you installed it alongside another operating system, you will see the **GRUB bootloader** to select your OS.
|
||||
|
||||
---
|
||||
|
||||
### 🎉 **Step 9: Post-Installation Setup**
|
||||
|
||||
1. **Set Up Your System**:
|
||||
After booting into Snigdha OS, you may need to:
|
||||
- **Install additional software** using the **Snigdha OS Assistant** or **Pacman**.
|
||||
- **Update the system** if needed:
|
||||
```bash
|
||||
sudo pacman -Syu
|
||||
```
|
||||
|
||||
2. **Enjoy Your New Snigdha OS System**:
|
||||
Once everything is set up, you can start using Snigdha OS, explore the KDE Plasma desktop, install apps, and customize your system!
|
||||
|
||||
---
|
||||
|
||||
### 🎉 **Conclusion**
|
||||
|
||||
You’ve now successfully installed **Snigdha OS** using the **online installation** method! The online installation ensures you get the latest updates and packages during the installation process, making the system up-to-date as soon as it’s ready. Enjoy using Snigdha OS and all its powerful features! 😎🚀
|
Reference in New Issue
Block a user