mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
🔧 build(new): updated & translated
This commit is contained in:
8
docs/installation/_category_.json
Normal file
8
docs/installation/_category_.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"label": "Installation",
|
||||
"position": 2,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "Explore comprehensive guides and step-by-step instructions to install and set up Snigdha OS effortlessly. Start your journey with detailed installation processes tailored for various environments."
|
||||
}
|
||||
}
|
143
docs/installation/download-snigdha-os.md
Normal file
143
docs/installation/download-snigdha-os.md
Normal file
@@ -0,0 +1,143 @@
|
||||
---
|
||||
sidebar_position: 3
|
||||
---
|
||||
# Download Snigdha OS
|
||||
|
||||
Here’s the updated **Markdown file** with Ventoy instructions added for creating bootable media:
|
||||
|
||||
|
||||
### 🌟 **Guide to Download Snigdha OS**
|
||||
|
||||
Snigdha OS is a beautiful Arch-based distribution that provides an intuitive and user-friendly experience, complete with eye-catching themes, performance enhancements, and pre-configured software. Here's a simple guide to help you download Snigdha OS and start using it on your system.
|
||||
|
||||
|
||||
|
||||
## 🔽 **Step 1: Visit the Official Snigdha OS Website**
|
||||
|
||||
1. **Go to the Official Snigdha OS Website**:
|
||||
Open your browser and visit the official Snigdha OS website to download the ISO. The website is:
|
||||
- [Download Snigdha OS](https://snigdhaos.org/downloads.html)
|
||||
|
||||
2. **Choose Your Preferred Edition**:
|
||||
Snigdha OS offers several editions based on desktop environments and use cases. Some of the most popular editions include:
|
||||
- **Snigdha OS KDE** (KDE Plasma desktop with customizations)
|
||||
- **Snigdha OS XFCE** (A lighter desktop environment)
|
||||
- **Snigdha OS GNOME** (GNOME desktop environment)
|
||||
- **Snigdha OS LXQt** (A very lightweight desktop environment)
|
||||
- **Snigdha OS i3WM** (A minimalist tiling window manager)
|
||||
|
||||
Select the edition that best fits your preferences.
|
||||
|
||||
|
||||
|
||||
## 💻 **Step 2: Download the ISO File**
|
||||
|
||||
1. **Click on the Desired Edition**:
|
||||
Once on the Snigdha OS download page, select the edition you want to install. The page will provide a direct download link or a mirror list for the ISO.
|
||||
|
||||
2. **Start the Download**:
|
||||
After selecting your edition, click on the **Download** button. The file will typically be named something like:
|
||||
- `snigdhaos-YYYY.MM.DD-x86_64.iso`
|
||||
- Example: `snigdhaos-2024.12.01-x86_64.iso`
|
||||
|
||||
Wait for the download to complete. The size is typically around 2-3 GB, depending on the edition.
|
||||
|
||||
|
||||
|
||||
## 🔍 **Step 3: Verify the Download (Optional)**
|
||||
|
||||
1. **Verify the Integrity of the ISO**:
|
||||
To ensure that the ISO file has not been corrupted during download, it’s a good idea to verify its checksum (SHA256 or SHA1) to compare it with the official value.
|
||||
|
||||
- **Check the provided checksum** on the Snigdha OS website.
|
||||
- **Run the following command** in the terminal (replace the filename with your downloaded ISO file):
|
||||
|
||||
```bash
|
||||
sha256sum snigdhaos-YYYY.MM.DD-x86_64.iso
|
||||
```
|
||||
|
||||
- Compare the output checksum with the one on the Snigdha OS website. If they match, your download is intact.
|
||||
|
||||
|
||||
|
||||
## 💿 **Step 4: Create Bootable Media (USB or DVD)**
|
||||
|
||||
### Option 1: Using Ventoy 🛠️
|
||||
|
||||
Ventoy is an excellent tool for creating multi-boot USB drives with minimal effort.
|
||||
|
||||
1. **Download Ventoy**:
|
||||
- Visit the [Ventoy website](https://www.ventoy.net/) and download the latest version for your operating system.
|
||||
|
||||
2. **Install Ventoy on Your USB Drive**:
|
||||
- Extract the Ventoy zip file and run the installation script (e.g., `Ventoy2Disk.exe` for Windows or `./Ventoy2Disk.sh` for Linux).
|
||||
- Select your USB drive and click **Install**.
|
||||
|
||||
3. **Copy the Snigdha OS ISO**:
|
||||
- Once Ventoy is installed on the USB drive, copy the downloaded Snigdha OS ISO file directly to the USB drive.
|
||||
|
||||
4. **Boot with Ventoy**:
|
||||
- Restart your system and boot from the Ventoy USB drive. Select the Snigdha OS ISO from the Ventoy menu.
|
||||
|
||||
|
||||
|
||||
### Option 2: Using dd (Linux)
|
||||
|
||||
1. **Insert your USB Drive** and check its device name using the `lsblk` command:
|
||||
```bash
|
||||
lsblk
|
||||
```
|
||||
|
||||
2. **Write the ISO to the USB**:
|
||||
```bash
|
||||
sudo dd if=snigdhaos-YYYY.MM.DD-x86_64.iso of=/dev/sdX bs=4M status=progress oflag=sync
|
||||
```
|
||||
Replace `/dev/sdX` with your USB drive's actual device (e.g., `/dev/sdb`).
|
||||
|
||||
|
||||
|
||||
### Option 3: Using Rufus (Windows)
|
||||
|
||||
1. **Download Rufus**:
|
||||
Download and install **Rufus** from [Rufus website](https://rufus.ie/).
|
||||
|
||||
2. **Create a Bootable USB Drive**:
|
||||
- Insert your USB drive and launch Rufus.
|
||||
- Select the Snigdha OS ISO and choose the USB drive.
|
||||
- Click **Start** to create the bootable USB drive.
|
||||
|
||||
|
||||
|
||||
### Option 4: Burn to a DVD (Optional)
|
||||
|
||||
1. **Download ImgBurn or Brasero**:
|
||||
- Windows: Use [ImgBurn](https://www.imgburn.com/).
|
||||
- Linux: Use Brasero.
|
||||
|
||||
2. **Burn the ISO to a DVD**:
|
||||
Follow the application instructions to burn the ISO file to a blank DVD.
|
||||
|
||||
|
||||
|
||||
## 🚀 **Step 5: Boot from USB or DVD**
|
||||
|
||||
1. **Insert the Bootable USB or DVD** into the system where you want to install Snigdha OS.
|
||||
|
||||
2. **Enter BIOS/UEFI**:
|
||||
- Restart the computer and press the key to enter BIOS/UEFI (e.g., `F2`, `DEL`, or `ESC`).
|
||||
|
||||
3. **Set USB/DVD as Primary Boot Device**:
|
||||
- In BIOS/UEFI settings, set the USB drive or DVD as the primary boot device.
|
||||
|
||||
4. **Save and Reboot**:
|
||||
- Save the settings and reboot. Your system should boot into the Snigdha OS live environment.
|
||||
|
||||
|
||||
|
||||
## 🏁 **Conclusion**
|
||||
|
||||
Now that you’ve successfully downloaded and created bootable media for Snigdha OS, you’re ready to move forward with installation. You can use the **Calamares graphical installer** for a smooth installation experience or proceed with manual partitioning if you're an advanced user.
|
||||
|
||||
For more detailed installation instructions, visit the [Snigdha OS Wiki](https://wiki.snigdhaos.org/).
|
||||
|
||||
Enjoy the performance and beauty of Snigdha OS! 😎🚀
|
@@ -0,0 +1,69 @@
|
||||
---
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
# Important Note
|
||||
|
||||
Installing Snigdha OS is an exciting step toward a customized and high-performance Linux experience. However, before you proceed, it's crucial to be fully prepared. Please read this guide carefully to ensure a smooth and secure installation process. 💡
|
||||
|
||||
|
||||
|
||||
## 🔒 Backup Your Data
|
||||
|
||||
- 🗂️ **Backup is essential!** Before making any changes to your system, ensure you have securely backed up all critical files and data to an external drive or cloud storage.
|
||||
- 💾 **Why?** The installation process involves disk partitioning, which can result in data loss if done incorrectly.
|
||||
|
||||
|
||||
|
||||
## ⚠️ Know Your System
|
||||
|
||||
- 🖥️ Ensure you are familiar with your system's hardware, including disk configuration, BIOS/UEFI settings, and boot order.
|
||||
- 🛠️ Check system compatibility with Snigdha OS requirements:
|
||||
- **Processor:** x86_64 architecture
|
||||
- **RAM:** Minimum 2 GB (4 GB recommended)
|
||||
- **Storage:** Minimum 20 GB free space
|
||||
|
||||
|
||||
|
||||
## 🌐 Stable Internet Connection Required(Online Installation)
|
||||
|
||||
- 📶 **Internet is a must if you are going for online installation!** The installation process downloads essential packages in real-time. Ensure you have a stable and reliable internet connection throughout the setup.
|
||||
|
||||
|
||||
|
||||
## 📜 Read the Documentation
|
||||
|
||||
- 📖 **Thoroughly review the installation documentation** to understand each step. Jumping into the process without preparation can lead to errors or an incomplete setup.
|
||||
- 🧭 Follow the official [Snigdha OS Playbook](https://snigdha-os.github.io/playbook/) for detailed guidance.
|
||||
|
||||
|
||||
|
||||
## 🛑 Dual Boot Warning
|
||||
|
||||
- 💡 If you are installing Snigdha OS alongside another operating system (dual boot), be cautious when partitioning the disk.
|
||||
- 🔧 Misconfiguring the bootloader or partition scheme can render other operating systems unbootable.
|
||||
- 🛡️ Use tools like `GParted` to prepare your disk safely.
|
||||
|
||||
|
||||
|
||||
## 🏗️ Installation Checklist
|
||||
|
||||
Before you begin, ensure you have:
|
||||
- ✅ A **bootable USB drive** with the Snigdha OS ISO.
|
||||
- ✅ Backed up all critical data.
|
||||
- ✅ A stable internet connection.**(Optional)**
|
||||
- ✅ A system that meets the hardware requirements.
|
||||
- ✅ Read and understood the installation guide.
|
||||
|
||||
|
||||
|
||||
## 🧑💻 Need Help?
|
||||
|
||||
If you encounter any issues during installation:
|
||||
- Visit our [community forums](https://forum.snigdhaos.org) for support.
|
||||
- Check out the troubleshooting section in the [Snigdha OS Playbook](https://snigdha-os.github.io/playbook/).
|
||||
- Reach out to the active developers or contributors for assistance.
|
||||
|
||||
|
||||
|
||||
Installing Snigdha OS is a journey into the world of minimalistic and powerful Linux. 🌟 With proper preparation, you're just a few steps away from an amazing experience. Good luck! 🚀
|
99
docs/installation/snigdha-os-live-environment.md
Normal file
99
docs/installation/snigdha-os-live-environment.md
Normal file
@@ -0,0 +1,99 @@
|
||||
---
|
||||
sidebar_position: 4
|
||||
---
|
||||
# Live Environment
|
||||
|
||||
### 🌟 **Snigdha OS Live Environment: An Overview**
|
||||
|
||||
The **Snigdha OS Live Environment** is the initial mode you boot into when running Snigdha OS from a USB drive or DVD without installing it. It provides an opportunity to test and experience Snigdha OS before committing to the installation. The live environment allows you to explore the user interface, test hardware compatibility, and even run applications without modifying your system.
|
||||
|
||||
Here's everything you need to know about the **Snigdha OS Live Environment**.
|
||||
|
||||
|
||||
|
||||
### 🖥️ **What Is the Snigdha OS Live Environment?**
|
||||
|
||||
The **Live Environment** in Snigdha OS is a fully functional, bootable environment that runs directly from your USB drive or DVD without needing installation. It's a great way to:
|
||||
|
||||
- **Try Snigdha OS**: Get a feel for the operating system without installing it.
|
||||
- **Test Hardware Compatibility**: Check if your system's hardware works well with Snigdha OS.
|
||||
- **Access Tools**: Use the pre-installed tools and utilities to diagnose or repair your system.
|
||||
|
||||
In the live environment, you can explore Snigdha OS's features, such as the **KDE Plasma** desktop (in the default edition), graphical tools, system settings, and much more.
|
||||
|
||||
|
||||
|
||||
### 🌍 **Features of the Snigdha OS Live Environment**
|
||||
|
||||
#### 1. **Beautiful KDE Plasma Desktop**
|
||||
Snigdha OS comes with a highly customized version of **KDE Plasma** as its default desktop environment. In the live environment, you can experience:
|
||||
- **Eye-catching themes**: Custom themes with vibrant colors and transparent effects.
|
||||
- **Pre-configured widgets**: Useful widgets like system monitoring, weather, and calendar.
|
||||
- **Snigdha OS Assistant**: A tool for managing your system easily, offering options for updates, tweaks, and more.
|
||||
|
||||
#### 2. **Performance Optimizations**
|
||||
Snigdha OS is known for its performance enhancements, and these are present in the live environment too:
|
||||
- **Preconfigured optimizations** for better responsiveness and speed.
|
||||
- **ZFS support**: Built-in support for advanced filesystem options like ZFS (available after installation).
|
||||
- **Btrfs snapshots**: You can test out Btrfs-based snapshots and rollback features in the live environment.
|
||||
|
||||
#### 3. **Pre-installed Software**
|
||||
The live environment comes with a wide range of pre-installed software to explore:
|
||||
- **Web browser**: Typically **Firefox** or **Chromium** for web browsing.
|
||||
- **Office suite**: LibreOffice or other office applications.
|
||||
- **Media players**: VLC and other multimedia tools.
|
||||
- **System monitoring tools**: Tools like **KSysGuard** to check system resources, and **GParted** for partitioning.
|
||||
|
||||
#### 4. **Hardware Compatibility Testing**
|
||||
The live environment helps you test hardware compatibility before installation:
|
||||
- **Graphics**: See if your graphics card works well with Snigdha OS (NVIDIA, AMD, or Intel).
|
||||
- **Wi-Fi**: Test if your wireless card connects without issues.
|
||||
- **Sound**: Check if your speakers or headphones work correctly.
|
||||
|
||||
#### 5. **Snigdha OS Welcome App**
|
||||
The Snigdha OS Welcome app provides an easy-to-navigate introduction to the system, offering quick access to:
|
||||
- **Installation**: Start the installation process if you're ready to install Snigdha OS.
|
||||
- **Settings**: Customize settings and tweak the system.
|
||||
- **Updates**: Quickly check for and apply system updates.
|
||||
- **Documentation**: Access official documentation and guides to help you along the way.
|
||||
|
||||
#### 6. **Persistence (Optional)**
|
||||
In some cases, you can configure persistence in the Snigdha OS live environment. This allows you to save changes and data across reboots, making it a more persistent experience. It is not enabled by default, but it can be set up using specific tools or settings.
|
||||
|
||||
|
||||
|
||||
### 🚀 **Using the Snigdha OS Live Environment**
|
||||
|
||||
#### 1. **Testing and Exploring**
|
||||
You can explore the system freely. Here are a few things you can do:
|
||||
- **Try out the desktop**: Navigate the KDE Plasma desktop, try out its features, and experience the customization that Snigdha OS provides.
|
||||
- **Check out system settings**: Explore various pre-configured system settings like appearance, keyboard layout, and more.
|
||||
- **Use pre-installed apps**: Open apps like Firefox, VLC, and LibreOffice to get a feel of the system’s performance.
|
||||
|
||||
#### 2. **Launching the Installer**
|
||||
If you decide to install Snigdha OS, the live environment offers an easy-to-use graphical installer. Here's how to launch it:
|
||||
- **Click the Snigdha OS Installer** icon on the desktop or in the menu.
|
||||
- The installer will guide you through the process of partitioning your hard drive and setting up Snigdha OS.
|
||||
- You can choose between **Btrfs**, **ext4**, or **other file systems** during installation.
|
||||
|
||||
#### 3. **Running Diagnostics**
|
||||
If you encounter hardware issues or need to run diagnostic tests, the live environment has a range of useful tools like:
|
||||
- **GParted** for managing partitions.
|
||||
- **Timeshift** for system snapshots (you can install it for more advanced setups).
|
||||
- **Snigdha OS Assistant** for managing system tweaks.
|
||||
|
||||
|
||||
|
||||
### 🏁 **When to Use Snigdha OS Live Environment**
|
||||
|
||||
- **Before Installing**: If you're unsure about how Snigdha OS will perform on your hardware, the live environment lets you test it out first.
|
||||
- **For Repairs**: If you need to troubleshoot or repair a system, you can boot into the live environment to access system recovery tools.
|
||||
- **For Exploration**: Snigdha OS's live environment is a great way to get to know the system, whether you're considering a switch from another distro or just want to see how it works.
|
||||
|
||||
|
||||
|
||||
### 🎉 **Conclusion**
|
||||
|
||||
The **Snigdha OS Live Environment** is a powerful and feature-packed way to experience Snigdha OS without committing to an installation. It offers a fully functional system with performance optimizations, a beautiful KDE Plasma desktop, pre-installed software, and various tools for hardware testing and system diagnostics.
|
||||
|
||||
You can use it to explore Snigdha OS, try out the desktop, check compatibility, or even install it if you're ready to make the switch. Whether you want to test, troubleshoot, or simply explore, the live environment is the perfect starting point. 😎🚀
|
154
docs/installation/snigdha-os-offline-installation.md
Normal file
154
docs/installation/snigdha-os-offline-installation.md
Normal file
@@ -0,0 +1,154 @@
|
||||
---
|
||||
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=snigdhaos-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! 😎🚀
|
205
docs/installation/snigdha-os-on-virtual-box.md
Normal file
205
docs/installation/snigdha-os-on-virtual-box.md
Normal file
@@ -0,0 +1,205 @@
|
||||
---
|
||||
sidebar_position: 6
|
||||
---
|
||||
# VirtualBox Installation
|
||||
|
||||
### 🖥️ **How to Install Snigdha OS in VirtualBox**
|
||||
|
||||
Installing **Snigdha OS** in **VirtualBox** is a great way to test or use Snigdha OS in a virtual environment without affecting your main system. Here's a detailed step-by-step guide to help you get Snigdha OS running in VirtualBox.
|
||||
|
||||
|
||||
|
||||
### 📥 **Step 1: Download Snigdha OS ISO**
|
||||
|
||||
1. **Go to the Official Snigdha OS Website**:
|
||||
Visit the official Snigdha OS download page:
|
||||
- [Snigdha OS Downloads](https://snigdhaos.org/downloads.html)
|
||||
|
||||
2. **Download the ISO File**:
|
||||
Choose the edition (KDE, GNOME, XFCE, etc.) and download the ISO file. The file will be something like:
|
||||
- `snigdhaos-YYYY.MM.DD-x86_64.iso`
|
||||
|
||||
|
||||
|
||||
### 💾 **Step 2: Install and Set Up VirtualBox**
|
||||
|
||||
1. **Download and Install VirtualBox**:
|
||||
- **For Windows**: Download from [VirtualBox Website](https://www.virtualbox.org/).
|
||||
- **For macOS**: Download from [VirtualBox Website](https://www.virtualbox.org/).
|
||||
- **For Linux**: You can install it via your package manager:
|
||||
```bash
|
||||
sudo pacman -S virtualbox # For Arch Linux and derivatives
|
||||
sudo apt install virtualbox # For Ubuntu/Debian
|
||||
sudo dnf install virtualbox # For Fedora
|
||||
```
|
||||
|
||||
2. **Launch VirtualBox**:
|
||||
After installation, launch **VirtualBox** from your applications menu.
|
||||
|
||||
|
||||
|
||||
### ⚙️ **Step 3: Create a New Virtual Machine**
|
||||
|
||||
1. **Click on "New"**:
|
||||
Open VirtualBox and click on the **New** button to create a new virtual machine.
|
||||
|
||||
2. **Set the Name and Type**:
|
||||
- **Name**: Choose a name for your virtual machine (e.g., "Snigdha OS").
|
||||
- **Type**: Select **Linux**.
|
||||
- **Version**: Select **Linux 2.6 / 3.x / 4.x (64-bit)** (or a similar option depending on the version of Snigdha OS).
|
||||
|
||||
3. **Allocate Memory**:
|
||||
- Assign **at least 2 GB of RAM** (more is recommended if your system can handle it). The default setting is usually fine, but you can increase it if you want better performance.
|
||||
|
||||
4. **Create a Virtual Hard Disk**:
|
||||
- **Virtual Hard Disk Type**: Choose **VDI** (VirtualBox Disk Image).
|
||||
- **Storage on Physical Hard Disk**: Choose **Dynamically allocated** (this will allow the virtual disk to grow as needed).
|
||||
- **Size**: Allocate **at least 20 GB** of disk space (the more the better, depending on your needs).
|
||||
|
||||
|
||||
|
||||
### 💿 **Step 4: Mount the Snigdha OS ISO**
|
||||
|
||||
1. **Go to Settings**:
|
||||
After creating the virtual machine, click on the **Settings** button.
|
||||
|
||||
2. **Mount the ISO**:
|
||||
- Go to the **Storage** tab.
|
||||
- Under **Controller: IDE**, click the empty **disk icon** and then click **Choose a disk file**.
|
||||
- Select the Snigdha OS ISO file you downloaded earlier.
|
||||
|
||||
|
||||
|
||||
### 🔄 **Step 5: Configure Virtual Machine Settings (Optional)**
|
||||
|
||||
1. **Adjust Display Settings**:
|
||||
- Go to the **Display** tab in the settings and increase the **Video Memory** to at least 64 MB to ensure smooth graphics.
|
||||
- Enable **3D Acceleration** (if your hardware supports it) for better performance.
|
||||
|
||||
2. **Network Settings**:
|
||||
- In the **Network** tab, ensure that the adapter is set to **Attached to NAT** (this allows the virtual machine to access the internet).
|
||||
|
||||
|
||||
|
||||
### 🔌 **Step 6: Start the Virtual Machine and Install Snigdha OS**
|
||||
|
||||
1. **Start the Virtual Machine**:
|
||||
Click the **Start** button in VirtualBox.
|
||||
|
||||
2. **Boot from the ISO**:
|
||||
The virtual machine will boot from the Snigdha OS ISO. You’ll see the Snigdha OS **Live Session** screen. If it doesn't boot, make sure the ISO is properly mounted in the **Storage** section.
|
||||
|
||||
3. **Launch the Installer**:
|
||||
Once in the live environment, click on the **Garuda Installer** icon on the desktop to start the installation process.
|
||||
|
||||
|
||||
|
||||
### ⚙️ **Step 7: Install Snigdha OS**
|
||||
|
||||
1. **Select Language and Region**:
|
||||
Choose your **language**, **keyboard layout**, and **timezone**.
|
||||
|
||||
2. **Partitioning**:
|
||||
- If you're using a single disk, you can choose **Erase disk and install Garuda** for automatic partitioning.
|
||||
- Alternatively, select **Manual Partitioning** if you need to create custom partitions.
|
||||
|
||||
3. **User Configuration**:
|
||||
- Set your **username**, **password**, and **root password**.
|
||||
- Choose **Btrfs** as the default filesystem for Garuda (or ext4 if preferred).
|
||||
|
||||
4. **Start the Installation**:
|
||||
After configuring your settings, click **Install** to begin the installation process. The installer will copy files, install packages, and set up your system.
|
||||
|
||||
|
||||
|
||||
### 🔄 **Step 8: Complete the Installation and Reboot**
|
||||
|
||||
1. **Wait for Installation to Finish**:
|
||||
The installation may take a while, depending on the speed of your system and the amount of software being installed. The progress will be shown in the installer.
|
||||
|
||||
2. **Reboot the Virtual Machine**:
|
||||
Once the installation is complete, the installer will prompt you to reboot the system. Click **Reboot Now** and remove the ISO file from the virtual drive in VirtualBox.
|
||||
|
||||
|
||||
|
||||
### 🖥️ **Step 9: Boot into Snigdha OS**
|
||||
|
||||
1. **Reboot**:
|
||||
After the installation, reboot the virtual machine. It will boot into your new **Snigdha OS** installation.
|
||||
|
||||
2. **Login**:
|
||||
Enter the **username** and **password** you set during the installation to log into Snigdha OS.
|
||||
|
||||
|
||||
|
||||
### 🎉 **Step 10: Post-Installation Steps**
|
||||
|
||||
1. **Update the System**:
|
||||
After logging in, open a terminal and update your system:
|
||||
```bash
|
||||
sudo pacman -Syu
|
||||
```
|
||||
|
||||
2. **Install Additional Software**:
|
||||
You can install additional software using the **Garuda Assistant** or the **Pacman** package manager.
|
||||
|
||||
3. **Enjoy Snigdha OS**:
|
||||
Now that your Snigdha OS is installed and running in VirtualBox, you can explore the KDE Plasma desktop or the desktop environment you chose during the installation.
|
||||
|
||||
|
||||
|
||||
### 🎉 **Conclusion**
|
||||
|
||||
You’ve successfully installed **Snigdha OS** in **VirtualBox**! This method allows you to run Snigdha OS on your system without affecting your main operating system. VirtualBox provides an isolated environment where you can experiment with Snigdha OS, install software, and test configurations.
|
||||
|
||||
Enjoy exploring Snigdha OS! 😎🚀
|
||||
|
||||
|
||||
|
||||
# VMware and GNOME Boxes Installation
|
||||
|
||||
### VMware
|
||||
|
||||
1. **Download and Install VMware**:
|
||||
- **For Windows/Mac**: Download VMware Workstation Player from [VMware's website](https://www.vmware.com/products/workstation-player.html).
|
||||
- **For Linux**: Install VMware Workstation using your package manager or download the .bundle file from VMware's site and run it in the terminal.
|
||||
|
||||
2. **Create a New Virtual Machine**:
|
||||
- Open VMware and click **Create a New Virtual Machine**.
|
||||
- Choose **Typical** installation.
|
||||
- Select **Installer disc image file (iso)** and browse for the Snigdha OS ISO.
|
||||
- Follow the on-screen instructions to set the VM's resources (RAM, disk size, etc.).
|
||||
|
||||
3. **Install Snigdha OS**:
|
||||
- After setting up the virtual machine, click **Power on** to start the VM.
|
||||
- The VM will boot from the Snigdha OS ISO, and you can proceed with the installation as described earlier.
|
||||
|
||||
4. **Finish Installation**:
|
||||
- Once installation is complete, reboot the VM and remove the ISO from the virtual drive to boot into the newly installed Snigdha OS.
|
||||
|
||||
|
||||
|
||||
### GNOME Boxes
|
||||
|
||||
1. **Install GNOME Boxes**:
|
||||
- **For Linux**: Install via your package manager.
|
||||
```bash
|
||||
sudo apt install gnome-boxes # For Ubuntu/Debian
|
||||
sudo pacman -S gnome-boxes # For Arch Linux
|
||||
```
|
||||
|
||||
2. **Create a New Virtual Machine**:
|
||||
- Launch **GNOME Boxes**.
|
||||
- Click **+** to create a new virtual machine.
|
||||
- Select the **Snigdha OS ISO** you downloaded.
|
||||
|
||||
3. **Install Snigdha OS**:
|
||||
- Follow the on-screen instructions to configure resources (like RAM and disk space).
|
||||
- Once configured, start the VM, and it will boot from the ISO to begin the installation.
|
||||
|
||||
4. **Complete Installation**:
|
||||
- Follow the installation steps and reboot after installation to boot into your new Snigdha OS installation.
|
||||
|
||||
|
||||
|
||||
Enjoy using Snigdha OS in any of these virtual environments! 😄
|
175
docs/installation/snigdha-os-online-installation.md
Normal file
175
docs/installation/snigdha-os-online-installation.md
Normal file
@@ -0,0 +1,175 @@
|
||||
---
|
||||
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! 😎🚀
|
28
docs/installation/snigdha-os-system-requirements.md
Normal file
28
docs/installation/snigdha-os-system-requirements.md
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
sidebar_position: 1
|
||||
---
|
||||
# System Requirements
|
||||
|
||||
### 🌟 **System Requirements for Snigdha OS**
|
||||
|
||||
To ensure a smooth experience with Snigdha OS, here are the minimum and recommended hardware specifications:
|
||||
|
||||
|
||||
|
||||
### 🔹 **Minimum Requirements**
|
||||
These are the bare minimum specifications needed to install and run Snigdha OS:
|
||||
- 🖥 **Processor**: Any x86_64 processor
|
||||
- 💾 **Disk Space**: 10 GB
|
||||
- 🐏 **RAM**: 1 GB
|
||||
|
||||
|
||||
|
||||
### 🔹 **Recommended Requirements**
|
||||
For better performance and to fully utilize the features of Snigdha OS, the following specifications are recommended:
|
||||
- 🖥 **Processor**: Core 2 Duo or higher
|
||||
- 💾 **Storage**: 30 GB HDD/SSD or more
|
||||
- 🐏 **RAM**: 2 GB or higher
|
||||
|
||||
|
||||
|
||||
Snigdha OS is designed to be lightweight and efficient, making it suitable for a wide range of hardware configurations. Whether you're using an older machine or a modern system, Snigdha OS can adapt and deliver a seamless user experience. ✨
|
Reference in New Issue
Block a user