29 lines
840 B
Org Mode
29 lines
840 B
Org Mode
* March
|
|
|
|
A small script to automate my archlinux configuration.
|
|
|
|
** How to use it
|
|
|
|
First off you create your arch linux installation medium.
|
|
Instructions to do so can be found [[https://wiki.archlinux.org/index.php/USB_flash_installation_medium][here]].
|
|
|
|
Once your machine is up and running with inside the archfs we have to do the following things to get ~git~ running.
|
|
|
|
#+begin_src sh
|
|
pacman -Sy
|
|
pacman -S git
|
|
#+end_src
|
|
|
|
Then we can download this repo and run the install script.
|
|
#+begin_src sh
|
|
git clone https://gitlab.com/TuDatTr/march
|
|
chmod ./march/install.sh
|
|
./install.sh -d [DEVICE] -t [/usr/share/zoneinfo/REGION/CITY] -l [LOCALE] -h [HOSTNAME] -u [USER] -s [SUDO]
|
|
#+end_src
|
|
|
|
** TODO
|
|
|
|
1. Proper status messages
|
|
2. Add passwd input for user from stdin instead cli args
|
|
3. Add intel/amd specific driver `xf86-video` and `microcode`.
|