diff options
Diffstat (limited to 'ion')
-rw-r--r-- | ion/etc/default/grub | 47 | ||||
-rw-r--r-- | ion/etc/fstab | 21 |
2 files changed, 68 insertions, 0 deletions
diff --git a/ion/etc/default/grub b/ion/etc/default/grub new file mode 100644 index 0000000..d98d54f --- /dev/null +++ b/ion/etc/default/grub @@ -0,0 +1,47 @@ +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="Arch" +GRUB_CMDLINE_LINUX_DEFAULT="" +GRUB_CMDLINE_LINUX="cryptdevice=UUID=a07e3f4c-1502-4055-b6d7-02eeae18dd43:luks" + +# Preload both GPT and MBR modules so that they are not missed +GRUB_PRELOAD_MODULES="part_gpt part_msdos" + +# Uncomment to enable Hidden Menu, and optionally hide the timeout count +#GRUB_HIDDEN_TIMEOUT=5 +#GRUB_HIDDEN_TIMEOUT_QUIET=true + +# Uncomment to use basic console +GRUB_TERMINAL_INPUT=console + +# Uncomment to disable graphical terminal +#GRUB_TERMINAL_OUTPUT=console + +# The resolution used on graphical terminal +# note that you can use only modes which your graphic card supports via VBE +# you can see them in real GRUB with the command `vbeinfo' +GRUB_GFXMODE=auto + +# Uncomment to allow the kernel use the same resolution used by grub +GRUB_GFXPAYLOAD_LINUX=keep + +# Uncomment if you want GRUB to pass to the Linux kernel the old parameter +# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx" +#GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +GRUB_DISABLE_RECOVERY=true + +# Uncomment and set to the desired menu colors. Used by normal and wallpaper +# modes only. Entries specified as foreground/background. +GRUB_COLOR_NORMAL="light-blue/black" +GRUB_COLOR_HIGHLIGHT="light-cyan/blue" + +# Uncomment one of them for the gfx desired, a image background or a gfxtheme +#GRUB_BACKGROUND="/path/to/wallpaper" +#GRUB_THEME="/path/to/gfxtheme" + +# Uncomment to get a beep at GRUB start +#GRUB_INIT_TUNE="480 440 1" + +#GRUB_SAVEDEFAULT="true" diff --git a/ion/etc/fstab b/ion/etc/fstab new file mode 100644 index 0000000..37f05bf --- /dev/null +++ b/ion/etc/fstab @@ -0,0 +1,21 @@ +# +# /etc/fstab: static file system information +# +# <file system> <dir> <type> <options> <dump> <pass> +# /dev/mapper/VolGroup00-lvolroot LABEL=ROOT_ARCH +UUID=26040172-f76a-4f76-88fa-3b13211aa679 / btrfs rw,relatime,space_cache,compress=lzo 0 0 + +# /dev/sda3 LABEL=BOOT_ARCH +UUID=629fa6c5-4196-48e8-ab87-ddba7e483ca8 /boot ext2 rw,relatime 0 2 + +# /dev/mapper/VolGroup00-lvolhome LABEL=HOME_ARCH +UUID=067ef96a-cc22-4e2d-a26e-43ec11637c4a /home ext4 rw,relatime,data=ordered,commit=15 0 2 + +# /dev/mapper/VolGroup00-lvolvar LABEL=VAR_ARCH +UUID=7b846b6a-34f2-4287-8daa-daa9e039afe9 /var btrfs rw,relatime,space_cache 0 0 + +# smb +//192.168.1.103/public /mnt/smb cifs rw,user=kyle,uid=1000,gid=100,password=foo 0 0 + +# win +/dev/sda2 /mnt/win ntfs-3g defaults 0 0 |