The title says it:
I'm upgrading an existing 3.8.49 Elive to 3.8.50-Retro version, removing systemd (through the installer/upgrader) and using OpenRC.
So here's my stetp:
- Boot into a live version of 3.8.50 and opt to "upgrade" the found OS and let it update to the latest version of the installer.
- Choose to remove systemd when the pop-up shows and ignore the warning.
- Let it proceed.
Here I've 2 comments for @Thanatermesis :
1: The installer does NOT ask for my mail address so no report is sent.
2: This is more of a wish. When the installer is done it remarks to some packages having failed to install. It would be nice if it showed a list of what exactly failed so it can be noted/screenshot/photographed for later reference.
On boot I found out network-manager was one of the removed packages which required some CLI fiddling to get the WiFi connection up and running using WPA.
Here's what I did (from the debian wiki)![]()
Find your wireless interface and bring it up: (NOTE: wlp2s0 is an example, you will need to make sure to use the correct device name for your system)
# ip a
# iw dev
# ip link set wlp2s0 up
Scan for available networks and get network details (If you already know your wifi network id/ESSID, you can skip this step):
# sudo -su
# iwlist scan
Now edit /etc/network/interfaces. The required configuration is much dependent on your particular setup. The following example will work for most commonly found WPA/WPA2 networks:
# my wifi device
allow-hotplug wlp2s0
iface wlp2s0 inet dhcp
wpa-ssid ESSID
wpa-psk PASSWORD
Bring up your interface and verify the connection:
# ifup wlp2s0
# iw wlp2s0 link
# ip a
You can manually bring your interface up and down with the ifup and ifdown commands. If you added 'allow-hotplug wlp2s0' as in the example above, the interface will be brought up automatically at boot.
Where, once you've installed i.e 'connman-gtk' you'll find the wifi connection dead. ![]()
The thing is then to remove (or comment out) the edited lines in /etc/network/interfaces, reboot and set your password with 'connman'.
- Of course installing connman-gtk before upgrading over to openRC makes it al a lot easier.
The other issue I've encountered is that the machine wont stop when choosing 'shutdown' from the desktop menu. It drops you into the lightdm interface with only an option to log back in.
The only way I've found to work (besides hitting the power-button manually) is using:
sudo shutdown -h now.
This 'shutdown' issue is slightly reminiscent of my experience using Enlightenment E27 and is probably a privileges/permission thingy.







