Page:
Setup Linux
No results
1
Setup Linux
partisan edited this page 2025-01-12 11:39:12 +01:00
Setup for Linux
Prerequisites
- Go: Version 1.23 or higher is required.
- Git: Necessary for cloning the repository.
- Internet Access: Required for fetching search results.
Installing Go (if not already installed or version is too low)
Using Package Manager (Recommended)
-
Ubuntu/Debian-based systems:
sudo apt update sudo apt install -y golang-go
-
Fedora/RHEL-based systems:
sudo dnf install -y golang
-
Arch-based systems:
sudo pacman -S go
Manual Installation (If Go version from package manager is too low)
-
Download the latest Go tarball:
wget https://go.dev/dl/go1.23.linux-amd64.tar.gz
-
Extract it to
/usr/local
:sudo tar -C /usr/local -xzf go1.23.linux-amd64.tar.gz
-
Add Go to your PATH (add this to
~/.bashrc
or~/.zshrc
):export PATH=$PATH:/usr/local/go/bin
-
Verify installation:
go version
Running QGato
-
Install Git:
sudo apt install -y git # For Ubuntu/Debian sudo dnf install -y git # For Fedora/RHEL sudo pacman -S git # For Arch
-
Clone the repository:
git clone https://weforge.xyz/Spitfire/Search.git cd Search
-
Make the script executable:
chmod +x ./run.sh
-
Run the script:
./run.sh
Alternative (Using Go Directly)
-
Clone the repository:
git clone https://weforge.xyz/Spitfire/Search.git cd Search
-
Run QGato with Go:
go run .
That's it! QGato is now running.
Navigation
Repository | Demo | License