Skip to content

Instantly share code, notes, and snippets.

@sarveshseri
Last active January 2, 2016 13:09
Show Gist options
  • Save sarveshseri/8307924 to your computer and use it in GitHub Desktop.
Save sarveshseri/8307924 to your computer and use it in GitHub Desktop.

Arch Gnome

Remove all xfce4
sudo su -
pacman -Sg xfce4 xfce4-goodies | awk '{print $2}' | xargs pacman -R --noconfirm libxfce4ui libxfcegui4

Network Manager

Install related packages
# pacman -S wpa_supplicant
# pacman -S wireless_tools
# pacman -S networkmanager
# pacman -S network-manager-applet
Make sure to stop dhcpd
# systemctl disable dhcpcd.service
# systemctl disable dhcpcd@.service

# systemctl stop dhcpcd.service
# systemctl stop dhcpcd@.service
Stop your network controllers
# ip link
# ip link set enpXXX down
# ip link set wlpXXX down
Enable and start the service
# systemctl enable NwtworkManager.service
# systemctl enable wpa_supplicant.service

# systemctl start wpa_supplicant.service
# systemctl start NwtworkManager.service
To start an interface on boot

Open /etc/sysconfig/network-scripts/ifcfg-XXXXX And add ONBOOT=yes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment