Hi all!
I shall apologise for those of you who have no need of this short guide, but I thought it would help users new to Obarun to get it installed and set up quickly.
I have used several Linux Distro versions, based on several types of package manager, and configuration set ups.
When trying to install Obarun on my old 2010 Macbook recently, I had several issues, from the WiFi not working, to it failing to format and use the internal SSD and start the install.
Because most network guides, even from Arch, use systemd, there is not much info out there that made sense, or a complete method from any one source, so after trying several commands and methods, I thought I'd post here a very simple and quick 'how to' for any newcomers, so they can spend only minutes to install Obarun, not hours spent like myself :)
First off, start with the very latest Obarun ISO image available, I noted that the most recent version starts with trying to configure the WiFi upon boot up, which is great, although this still failed to 'stick' when I tried setting it up myself via this, and would connect then drop the connection again. It does however, have valid PGP keys, so there is no need to edit any config files, as the earlier image needed.
Anyway...Setting up WiFi from the command line, launch a terminal window first, then type the following commands;
First, find the name of your wireless interface;
iwconfig
this will return the name of your WiFi adapter, in my case it was wlp3s0b1 so this will be used in the rest of the examples where needed, replace this with the name of your own adapter.
Next, using the Network name (SSID of the router) and the WPA2 Password (the pre shared key from your router) set up the WPA Supplicant file to connect via WPA2 using the following syntax;
sudo wpa_passphrase NetworkSSID PreSharedKey /etc/wpa_supplicant.conf
Note that there is only a single space between items, this will create the file wpa_supplicant.conf and populated it with the network name, network password (commented out), and a generated Hex value password key that the system will actually use instead of the plain text password given.
Now, we will make the adapter use this new file;
sudo wpa_supplicant -B -c /etc/wpa_supplicant.conf -i wlp3s0b1
The -B tells it to send this to the background, and the -i is for the adapter, mine was wlp3s0b1 replace this with your own found earlier.
Next, we just need an IP address;
sudo dhcpcd
That's it for WiFi, you should now be connected to the internet, and the install can proceed..
The next sticking point, was the formatting for me, I'm not sure exactly what the problem was, but after trying twice, the third time I just deleted any partitions found using fdisk, and then formatted the entire drive to ext4 from the live ISO.
The next time I tried to install, it went without hitch, including creating all the needed partitions and formatting to btrfs which previously failed.
I'm using the installed Obarun to write this. guide :)
Hope this was of some use to someone along the way.
I shall apologise for those of you who have no need of this short guide, but I thought it would help users new to Obarun to get it installed and set up quickly.
I have used several Linux Distro versions, based on several types of package manager, and configuration set ups.
When trying to install Obarun on my old 2010 Macbook recently, I had several issues, from the WiFi not working, to it failing to format and use the internal SSD and start the install.
Because most network guides, even from Arch, use systemd, there is not much info out there that made sense, or a complete method from any one source, so after trying several commands and methods, I thought I'd post here a very simple and quick 'how to' for any newcomers, so they can spend only minutes to install Obarun, not hours spent like myself :)
First off, start with the very latest Obarun ISO image available, I noted that the most recent version starts with trying to configure the WiFi upon boot up, which is great, although this still failed to 'stick' when I tried setting it up myself via this, and would connect then drop the connection again. It does however, have valid PGP keys, so there is no need to edit any config files, as the earlier image needed.
Anyway...Setting up WiFi from the command line, launch a terminal window first, then type the following commands;
First, find the name of your wireless interface;
iwconfig
this will return the name of your WiFi adapter, in my case it was wlp3s0b1 so this will be used in the rest of the examples where needed, replace this with the name of your own adapter.
Next, using the Network name (SSID of the router) and the WPA2 Password (the pre shared key from your router) set up the WPA Supplicant file to connect via WPA2 using the following syntax;
sudo wpa_passphrase NetworkSSID PreSharedKey /etc/wpa_supplicant.conf
Note that there is only a single space between items, this will create the file wpa_supplicant.conf and populated it with the network name, network password (commented out), and a generated Hex value password key that the system will actually use instead of the plain text password given.
Now, we will make the adapter use this new file;
sudo wpa_supplicant -B -c /etc/wpa_supplicant.conf -i wlp3s0b1
The -B tells it to send this to the background, and the -i is for the adapter, mine was wlp3s0b1 replace this with your own found earlier.
Next, we just need an IP address;
sudo dhcpcd
That's it for WiFi, you should now be connected to the internet, and the install can proceed..
The next sticking point, was the formatting for me, I'm not sure exactly what the problem was, but after trying twice, the third time I just deleted any partitions found using fdisk, and then formatted the entire drive to ext4 from the live ISO.
The next time I tried to install, it went without hitch, including creating all the needed partitions and formatting to btrfs which previously failed.
I'm using the installed Obarun to write this. guide :)
Hope this was of some use to someone along the way.