Skip to content

Instantly share code, notes, and snippets.

@ryansturmer
Last active September 29, 2018 15:38

Revisions

  1. ryansturmer revised this gist Apr 24, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion raspi-archlinux-setup.sh
    Original 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 wifi connect <essid> password <password> to configure a wireless network."
    echo "Run nmcli dev wifi connect <essid> password <password> to configure a wireless network."

  2. ryansturmer revised this gist Apr 23, 2014. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions raspi-archlinux-setup.sh
    Original 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
  3. ryansturmer revised this gist Apr 23, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion raspi-archlinux-setup.sh
    Original 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
    pacman --noconfirm -S networkmanager
    ip link set eth0 down
    ip link set wlan0 down
    systemctl enable NetworkManager
  4. ryansturmer revised this gist Jul 21, 2013. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions raspi-archlinux-setup.sh
    Original 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."

  5. ryansturmer created this gist Apr 8, 2013.
    35 changes: 35 additions & 0 deletions raspi-archlinux-setup.sh
    Original 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