Last active
September 29, 2018 15:38
Revisions
-
ryansturmer revised this gist
Apr 24, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -43,5 +43,5 @@ ip link set wlan0 down systemctl enable NetworkManager systemctl start NetworkManager echo "Run nmcli dev wifi connect <essid> password <password> to configure a wireless network." -
ryansturmer revised this gist
Apr 23, 2014 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,6 +32,10 @@ pacman --noconfirm -S xorg-server xorg-apps pacman --noconfirm -S lxde pacman --noconfirm -S gamin # SSH Daemon systemctl start sshd systemctl enable sshd.service #Network Configuration pacman --noconfirm -S networkmanager ip link set eth0 down -
ryansturmer revised this gist
Apr 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pacman --noconfirm -S lxde pacman --noconfirm -S gamin #Network Configuration pacman --noconfirm -S networkmanager ip link set eth0 down ip link set wlan0 down systemctl enable NetworkManager -
ryansturmer revised this gist
Jul 21, 2013 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,4 +32,12 @@ pacman --noconfirm -S xorg-server xorg-apps pacman --noconfirm -S lxde pacman --noconfirm -S gamin #Network Configuration pacman --noconfirm -S NetworkManager ip link set eth0 down ip link set wlan0 down systemctl enable NetworkManager systemctl start NetworkManager echo "Run nmcli wifi connect <essid> password <password> to configure a wireless network." -
ryansturmer created this gist
Apr 8, 2013 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ #!/bin/sh # System Update pacman --noconfirm -Syu #The essentials pacman --noconfirm -S base-devel vim git # Packer (AUR Helper) cd /tmp mkdir packer_build cd packer_build wget https://aur.archlinux.org/packages/pa/packer/PKGBUILD makepkg --asroot --noconfirm -i -s # raspi-config script # Surprised this can't be found in the AUR? pacman --noconfirm -S parted libnewt cd /tmp mkdir raspi-config_build cd raspi-config_build git clone git://github.com/chattama/raspi-config-archlinux.git . cp ./raspi-config /usr/bin #Drivers pacman --noconfirm -S xf86-video-fbdev #Xorg pacman --noconfirm -S xorg-server xorg-apps #LXDE pacman --noconfirm -S lxde pacman --noconfirm -S gamin