diff options
Diffstat (limited to 'sandy')
-rw-r--r-- | sandy/fstab | 30 | ||||
-rw-r--r-- | sandy/xorg.conf | 72 |
2 files changed, 102 insertions, 0 deletions
diff --git a/sandy/fstab b/sandy/fstab new file mode 100644 index 0000000..8d1022b --- /dev/null +++ b/sandy/fstab @@ -0,0 +1,30 @@ +# +# /etc/fstab: static file system information +# +# <file system> <dir> <type> <options> <dump> <pass> +# /dev/mapper/VolGroup00-lvolroot LABEL=ROOT_ARCH +UUID=53afbda9-4de2-4d3d-959b-f0577b24c4ff / btrfs defaults,rw,relatime,ssd,space_cache 0 0 + +# /dev/sdb2 LABEL=BOOT_ARCH +UUID=e31cab47-4f48-4861-8faa-8fc9d237c1dd /boot ext2 defaults,nodev,nosuid,noexec,rw,relatime 0 2 + +# /dev/sdb1 +UUID=1394-2634 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2 + +# /dev/mapper/VolGroup00-lvolvar LABEL=VAR_ARCH +UUID=889a7673-9a3a-4df3-9a67-e119e11508fa /var ext4 defaults,nodev,nosuid,noexec,rw,relatime,data=ordered,discard 0 2 + +# /dev/mapper/VolGroup00-lvolhome LABEL=HOME_ARCH +UUID=9308d1af-8b78-44a0-a07c-bcfb7205d27d /home ext4 defaults,nodev,nosuid,noexec,rw,relatime,data=ordered,discard 0 2 + +# c +UUID=762E41EC2E41A5C9 /mnt/c ntfs-3g defaults,ro 0 2 + +# d +/dev/md126p2 /mnt/d ntfs-3g defaults,ro 0 2 + +# f +UUID=F83A727C3A723828 /mnt/f ntfs-3g defaults,dmask=022,fmask=133,uid=1000,gid=users,umask=0022 0 2 + +# samba +//192.168.2.103/public /mnt/smb cifs user=kyle,password=brotato333,uid=1000,gid=100 0 0 diff --git a/sandy/xorg.conf b/sandy/xorg.conf new file mode 100644 index 0000000..06e43ff --- /dev/null +++ b/sandy/xorg.conf @@ -0,0 +1,72 @@ +Section "ServerLayout" + Identifier "X.org Configured" + Screen 0 "Screen0" 0 0 +EndSection + +Section "Files" + ModulePath "/usr/lib/xorg/modules" +EndSection + +Section "Module" + Load "glx" +EndSection + +Section "Monitor" + Identifier "Monitor0" + VendorName "Monitor Vendor" + ModelName "Monitor Model" +EndSection + +Section "Device" + ### Available Driver options are:- + ### Values: <i>: integer, <f>: float, <bool>: "True"/"False", + ### <string>: "String", <freq>: "<f> Hz/kHz/MHz", + ### <percent>: "<f>%" + ### [arg]: arg optional + #Option "SWcursor" # [<bool>] + #Option "HWcursor" # [<bool>] + #Option "NoAccel" # [<bool>] + #Option "ShadowFB" # [<bool>] + #Option "VideoKey" # <i> + #Option "WrappedFB" # [<bool>] + #Option "GLXVBlank" # [<bool>] + #Option "ZaphodHeads" # <str> + #Option "PageFlip" # [<bool>] + #Option "SwapLimit" # <i> + #Option "AsyncUTSDFS" # [<bool>] + Option "GLXVBlank" "1" + Identifier "Card0" + Driver "nouveau" + BusID "PCI:1:0:0" +EndSection + +Section "Screen" + Identifier "Screen0" + Device "Card0" + Monitor "Monitor0" + SubSection "Display" + Viewport 0 0 + Depth 1 + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 4 + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 8 + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 15 + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 16 + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 24 + EndSubSection +EndSection + |