Install:
make floppy, set win ftp daemon, install from win cdrom.
install from linux cd
portsentry-1.0-4.i386.rpm
ddclient
Install gcc and make:
rpm -i make-3.77-6.i386.rpm (make)
rpm -i egcs-1.1.2-12.i386.rpm (gcc,cc)
rpm -i egcs-c++-1.1.2-12.i386.rpm (g++)
Linus says gcc 2.7.3 is still the kernel compiler of choice
Begining:
comment out 2 ttys (mingetty)s in /etc/inittab
make su only executable by wheel group:
# chown root.wheel /bin/su
# chmod 4750 /bin/su
# usermod -G wheel spc
Lilo:
set vga=1 and default boot.
lilo and lilo -b /dev/fd0
restart
SAMBA:
...configure shares.
Named:
copy named.conf to /etc
copy /old/var/named/* /var/named/
setup sendmail:
#/etc/sendmail.cf
SmtpGreetingMessage=
PrivacyOptions=authwarnings noexpn novrfy needmailhelo noetrn
HelpFile=
#/etc/mail/access (make)
sapphire RELAY
mgetty+sendfax (cd1):
rpm -i mgetty-1.1.14-8.i386.rpm
x-windows XDMCP
start the xdm daemon:
# xdm
OR
# /etc/inittab
# Run xdm in runlevel 5, xdm is now a separate service
x:345:respawn:/etc/X11/prefdm -nodaemon
httpd:
edit /etc/httpd/conf/httpd.conf
ServerName www.linux.lan
Uncomment public_html
for .htaccess in root directory, AllowOverride Limit or All
AllowOverride All
order allow,deny
allow from all
AllowOverride None
Options -ExecCGI
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
OR
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
order allow,deny
allow from all
order deny,allow
deny from all
directories should be mode 755, files 644
if you use http://host/~xor no trailing /, it will redirect you to
www.linux.lan, if you append the trailing /, it will go to the
server without a redirect. You may notice a difference b/w an
internal http://host_name/~user and an external call, the diff
is b/w dns lookups b/w internal and extrernal clients. You will
get the public NIC IP instead of the internal 192.x IPs.
When a new user cannot display their website w/~user/ make sure
their /home/ directory has the proper perms (755).
md /etc/skel/public_html
chmod 755 /etc/skel/public_html