Minimoy - Eeebuntu NBR 3.0.1 - Files
Jump to navigation
Jump to search
/etc/fstab
Download [{{#filelink: fstab}} this file]. {{#fileanchor: fstab}}
# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=80b1c8a0-ab6a-4157-b475-9bd23c070860 / reiserfs notail,relatime 0 1
# /mnt/data was on /dev/sda4 during installation
UUID=7f39de5e-1e4f-4269-b5e2-891dad59fc80 /mnt/data ext3 relatime 0 2
# /windows was on /dev/sda1 during installation
UUID=92845980845967AD /windows ntfs defaults,nls=utf8,umask=007,gid=46 0 1
# swap was on /dev/sda3 during installation
UUID=b255d1fa-33a4-4ddf-8a96-ece222bb9010 none swap sw 0 0
//mnemosyne/public /net/mnemosyne/publicrw cifs noauto,guest,uid=1025,gid=124 0 0
//mnemosyne/backup /net/mnemosyne/backuprw cifs noauto,username=backup,uid=1027,gid=124 0 0
//mnemosyne/photos /net/mnemosyne/photosrw cifs noauto,username=photos,uid=1028,gid=124 0 0
//mnemosyne/movies /net/mnemosyne/moviesrw cifs noauto,username=movies,uid=1029,gid=124 0 0
//mnemosyne/videos /net/mnemosyne/videosrw cifs noauto,username=videos,uid=1030,gid=124 0 0
//mnemosyne/musics /net/mnemosyne/musicsrw cifs noauto,username=musics,uid=1031,gid=124 0 0
//mnemosyne/public /net/mnemosyne/public cifs ro,guest,uid=1025,gid=124 0 0
//mnemosyne/backup /net/mnemosyne/backup cifs ro,guest,uid=1027,gid=124 0 0
//mnemosyne/photos /net/mnemosyne/photos cifs ro,guest,uid=1028,gid=124 0 0
//mnemosyne/movies /net/mnemosyne/movies cifs ro,guest,uid=1029,gid=124 0 0
//mnemosyne/videos /net/mnemosyne/videos cifs ro,guest,uid=1030,gid=124 0 0
//mnemosyne/musics /net/mnemosyne/musics cifs ro,guest,uid=1031,gid=124 0 0
~/.dircolors.cfg
Download [{{#file: .dircolors.cfg}} this file].
# Configuration file for dircolors, a utility to help you set the # LS_COLORS environment variable used by GNU ls with the --color option. # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the # slackware version of dircolors) are recognized but ignored. # Below, there should be one TERM entry for each termtype that is colorizable TERM linux TERM linux-c TERM mach-color TERM console TERM con132x25 TERM con132x30 TERM con132x43 TERM con132x60 TERM con80x25 TERM con80x28 TERM con80x30 TERM con80x43 TERM con80x50 TERM con80x60 TERM cygwin TERM dtterm TERM mlterm TERM putty TERM xterm TERM xterm-color TERM xterm-debian TERM rxvt TERM rxvt-unicode TERM screen TERM screen-bce TERM screen-w TERM vt100 TERM Eterm # Below are the color init strings for the basic file types. A color init # string consists of one or more of the following numeric codes: # Attribute codes: # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed # Text color codes: # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white # Background color codes: # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white NORMAL 00 # global default, although everything should be something. FILE 00 # normal file DIR 01;34 # directory LINK 36 # symbolic link. (If you set this to 'target' instead of a # numerical value, the color is as for the file pointed to.) FIFO 40;33 # pipe SOCK 35 # socket DOOR 35 # door BLK 40;33;01 # block device driver CHR 40;33;01 # character device driver ORPHAN 40;31;01 # symlink to nonexistent file SETUID 37;41 # file that is setuid (u+s) SETGID 30;43 # file that is setgid (g+s) STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable # This is for files with execute permission: EXEC 32 # List any file extensions like '.gz' or '.tar' that you would like ls # to colorize below. Put the extension, a space, and the color init string. # (and any comments you want to add after a '#') # If you use DOS-style suffixes, you may want to uncomment the following: #.cmd 32 # executables (bright green) #.exe 32 #.com 32 #.btm 32 #.bat 32 .tar 01;31 # archives or compressed (bright red) .tgz 01;31 .arj 01;31 .taz 01;31 .lzh 01;31 .zip 01;31 .z 01;31 .Z 01;31 .gz 01;31 .bz2 01;31 .deb 01;31 .rpm 01;31 .jar 01;31 # image formats .jpg 35 .jpeg 35 .gif 35 .bmp 35 .pbm 35 .pgm 35 .ppm 35 .tga 35 .xbm 35 .xpm 35 .tif 35 .tiff 35 .png 35 .mov 35 .mpg 35 .mpeg 35 .avi 35 .fli 35 .gl 35 .dl 35 .xcf 35 .xwd 35 # audio formats .flac 35 .mp3 35 .mpc 35 .ogg 35 .wav 35
~/.vimrc
Download [{{#filelink: .vimrc}} this file]. {{#fileanchor: .vimrc}}
syntax enable
set bg=light
set number
set bs=2
nnoremap j h
nnoremap k j
nnoremap l k
nnoremap m l
nnoremap h m
vnoremap j h
vnoremap k j
vnoremap l k
vnoremap m l
vnoremap h m
set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab
set autoindent