(2007-04-11) Kable-distro

This commit is contained in:
2007-04-11 00:00:00 +02:00
commit 85f73f180f
548 changed files with 51134 additions and 0 deletions

9
baseconfig/etc/fstab Normal file
View File

@@ -0,0 +1,9 @@
# Begin /etc/fstab
# file system mount-point type options dump fsck
# order
/dev/<xxx> / <fff> defaults 1 1
/dev/<yyy> swap swap pri=1 0 0
# End /etc/fstab

19
baseconfig/etc/group Normal file
View File

@@ -0,0 +1,19 @@
root:x:0:
bin:x:1:
sys:x:2:
kmem:x:3:
tty:x:4:
tape:x:5:
daemon:x:6:
floppy:x:7:
disk:x:8:
lp:x:9:
dialout:x:10:
audio:x:11:
video:x:12:
utmp:x:13:
usb:x:14:
cdrom:x:15:
sshd:x:50:
nobody:x:1001:
nogroup:x:1002:

1
baseconfig/etc/hostname Normal file
View File

@@ -0,0 +1 @@
darkstar

1
baseconfig/etc/hosts Normal file
View File

@@ -0,0 +1 @@
127.0.0.1 localhost darkstar

43
baseconfig/etc/inputrc Normal file
View File

@@ -0,0 +1,43 @@
# Begin /etc/inputrc
# Modified by Chris Lynn <roryo@roryo.dynup.net>
# Allow the command prompt to wrap to the next line
set horizontal-scroll-mode Off
# Enable 8bit input
set meta-flag On
set input-meta On
# Turns off 8th bit stripping
set convert-meta Off
# Keep the 8th bit for display
set output-meta On
# none, visible or audible
set bell-style none
# All of the following map the escape sequence of the
# value contained inside the 1st argument to the
# readline specific functions
"\eOd": backward-word
"\eOc": forward-word
# for linux console
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
# for xterm
"\eOH": beginning-of-line
"\eOF": end-of-line
# for Konsole
"\e[H": beginning-of-line
"\e[F": end-of-line
# End /etc/inputrc

0
baseconfig/etc/mtab Normal file
View File

2
baseconfig/etc/passwd Normal file
View File

@@ -0,0 +1,2 @@
root:x:0:0:root:/root:/bin/bash
nobody:x:1001:1001::/home/nobody:

35
baseconfig/etc/profile Normal file
View File

@@ -0,0 +1,35 @@
# Begin /etc/profile
# Set PATH
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/bin:/bin:/usr/local/bin:~/bin:."
fi
export PATH
# Set prompt
if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
umask 022
export LANG=es_ES@euro
export INPUTRC=/etc/inputrc
# Aliases
alias ls='ls --color'
alias cd..='cd ..'
# End /etc/profile