Replies: 1 comment
-
TODO DONE
8/18
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Stuck at Installing Omarchy using wget? A Troubleshooting Guide
When you are stuck and nothing shows when you do
If you're encountering issues with the automatic installation script for Omarchy, this guide provides a step-by-step approach to diagnose and resolve the problem. The primary installation method for Omarchy, an opinionated Arch/Hyprland setup, involves a simple
wget
command. However, if that fails, network connectivity or other issues might be the cause.Step 1: Test Your Network Connectivity
First, verify your internet connection by pinging a reliable public DNS server.
If this command fails, it indicates a problem with your general network connection. Please check your network cables, Wi-Fi connection, and router configuration.
(Optional) Step 2: Check your network is IPv6 Ready
Using devices (phone , tablet, or another PC etc) in same WiFi network, test your network is IPv6 ready
Open following website to test IPv6 readiness.
This is no strictly neccesary but IPv6 ready seems to make downloading packages from Arch Linux sites makes smoother.
https://test-ipv6.com/
Step 3: Check Connection to Omarchy.org
If your general network connection is working, the next step is to test connectivity specifically to the Omarchy server.
Test IPv6 Connection:
Test IPv4 Connection (if IPv6 fails):
If the IPv6 ping fails, test the connection using IPv4.
Step 4: Use relflector command to pick Arch Linux package mirror cloer and faster for your locaton.
You might see lots of errors using reflector command.
It is normal as this commands check some unavilable mirrors and pick better for you.
This could save your time later when installing Omarchy and package update in normal days.
Optionally, you could run reflector in normal days once in a 2 weeks or a month to update your mirrorlist.
Step 5: Attempt Installation via IPv4
If the IPv4 ping to
omarchy.org
was successful, you can try to force the installation script to use IPv4 with the following command:wget -4 -qO- https://omarchy.org/install | bash
Step 6: Manual Installation via Git
If the previous steps did not resolve the issue, you can perform a manual installation using Git. This is a reliable alternative if you are still unable to download the installation script directly. Omarchy is designed for Arch Linux, and these commands are tailored for that environment.
Install Git:
Ensure you have
git
installed on your system.pacman
is the package manager for Arch Linux.Clone the Omarchy Repository:
Download the Omarchy source code from its official GitHub repository.
git clone https://github.com/basecamp/omarchy ~/.local/share/omarchy
Run the Installation Script:
Two options:
a. Option 1 - full install
Finally, execute the installation script located within the cloned repository.
~/.local/share/omarchy/install.sh
b. Option 2 - install-bare
Without a few fonts and software in install/xtra.sh
Finally, execute the installation script located within the cloned repository.
By following these steps, you should be able to successfully install Omarchy, even if the initial
wget
command fails.Beta Was this translation helpful? Give feedback.
All reactions