This file contains hidden or 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 characters
#!/bin/bash | |
#Installation | |
# Set the hostname | |
echo martin-pc > /etc/hostname | |
# Set timezone (or use tzselect) | |
ln -s /usr/share/zoneinfo/Europe/Berlin /etc/localtime |
This file contains hidden or 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 characters
## Germany | |
Server = http://mirror.23media.de/archlinux/$repo/os/$arch | |
Server = http://artfiles.org/archlinux.org/$repo/os/$arch | |
Server = http://mirror5.bastelfreak.org/archlinux/$repo/os/$arch | |
Server = http://mirror.compojoom.com/archlinux/$repo/os/$arch | |
Server = http://archlinux.cyborg-connect.de/$repo/os/$arch | |
Server = http://mirror.euserv.net/linux/archlinux/$repo/os/$arch | |
Server = http://mirror.f4st.host/archlinux/$repo/os/$arch | |
Server = http://ftp.fau.de/archlinux/$repo/os/$arch | |
Server = http://mirror.flipez.de/archlinux/$repo/os/$arch |
This file contains hidden or 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 characters
#!/bin/bash | |
#Pre-Installation | |
# Connect to the Internet | |
# wifi-menu | |
# Update the system clock | |
timedatectl set-ntp true |
This file contains hidden or 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 characters
#!/bin/bash | |
#Pre-Installation | |
# Connect to the Internet | |
# wifi-menu | |
# Update the system clock | |
timedatectl set-ntp true |
This file contains hidden or 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 characters
#!/bin/bash | |
#Pre-Installation | |
# Connect to the Internet | |
# wifi-menu | |
# Update the system clock | |
timedatectl set-ntp true |
This file contains hidden or 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 characters
# | |
# Arch Linux ARM repository mirrorlist | |
# Generated on 2016-03-19 | |
# | |
## Geo-IP based mirror selection and load balancing | |
Server = http://mirror.archlinuxarm.org/$arch/$repo | |
### Mirrors by country |
This file contains hidden or 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 characters
Todo: micro, print, displa:1 mouse touchpad app | |
studentenwerk bonn nasserstr | |
platz sakko | |
fritzbox aufhaengen | |
plakat kleber | |
fliegennetz | |
badewannhevorhang | |
rotehose flipflops |
This file contains hidden or 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 characters
#!/bin/bash | |
#Pre-Installation | |
# Connect to the Internet | |
# wifi-menu | |
# Update the system clock | |
timedatectl set-ntp true |
This file contains hidden or 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 characters
#!/bin/bash | |
#Installation | |
# Set the hostname | |
read -p "Set hostname: " hostName | |
echo $hostName > /etc/hostname | |
# Set the root password | |
echo "Set root password:" |