diff options
author | picodotdev <pico.dev@gmail.com> | 2018-01-15 19:09:23 +0100 |
---|---|---|
committer | picodotdev <pico.dev@gmail.com> | 2018-01-15 19:09:23 +0100 |
commit | 275a5534d0f0411cade6e1f68d2c4a42cd64527c (patch) | |
tree | c7996de6961e1a16e2752a13beb00869c0845da4 | |
parent | b02cfadc9515bb9784ae8927482a21ca2eb199fa (diff) |
New todos
-rw-r--r-- | README.md | 11 | ||||
-rw-r--r-- | alis.sh | 11 |
2 files changed, 19 insertions, 3 deletions
@@ -46,7 +46,18 @@ You can test it in a VirtualBox virtual machine. ### TODO +* systemd-boot? +* /boot/efi/EFI? +* GNOME, fuente de entrada (teclado), https://unix.stackexchange.com/questions/316998/how-to-change-keyboard-layout-in-gnome-3-from-command-line, https://askubuntu.com/questions/276509/change-gsettings-without-running-x-and-unity +> gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'es')]" +* GNOME, KDE autologin +> ??? gsettings set org.gnome.desktop.lockdown disable-lock-screen true +* Common packages SSH, bluethooth, ntfs-3g, dosfstools, ... +* Not delete everything, specific partitions * GRUB theme +* Icon theme (numix), antergos GNOME theme +* rEFInd * Custom shell interpreter * Retry failed package download error * Ncurses with Vala (ValaNcurses.vala, commands output to file, copy file to installed system?) +* Review https://linuxgnublog.org/es/instalacion-de-arch-linux/, https://github.com/erm2587/ArchLinuxInstaller @@ -172,7 +172,12 @@ function facts() { fi } -function network_install() { +function prepare() { + timedatectl set-ntp true + configure_network +} + +function configure_network() { if [ -n "$WIFI_INTERFACE" ]; then cp /etc/netctl/examples/wireless-wpa /etc/netctl chmod 600 /etc/netctl @@ -395,7 +400,7 @@ function bootloader() { if [ "$BIOS_TYPE" == "uefi" ]; then arch-chroot /mnt pacman -Sy --noconfirm efibootmgr arch-chroot /mnt grub-install --target=x86_64-efi --bootloader-id=grub --efi-directory=/boot --recheck - #arch-chroot /mnt efibootmgr --create --disk $DEVICE --part $PARTITION_BOOT_NUMBER --loader /EFI/grub/grubx64.efi --label "GRUB" + #arch-chroot /mnt efibootmgr --create --disk $DEVICE --part $PARTITION_BOOT_NUMBER --loader /EFI/grub/grubx64.efi --label "GRUB Boot Manager" fi if [ "$BIOS_TYPE" == "bios" ]; then arch-chroot /mnt grub-install --target=i386-pc --recheck $DEVICE @@ -542,7 +547,7 @@ function main() { warning init facts - network_install + prepare partition install kernels |