- Created default user environment files: .bash_logout, .bash_profile, and .bashrc. - Added symbolic links for dynamic linker and various libraries. - Included essential binaries in /sbin for system management (e.g., fdisk, mkfs, hwclock). - Implemented RPM verification script to check availability of required packages in CentOS vault. - Established basic directory structure for logs and mail. - Added a tarball for external libraries.
23 lines
409 B
Plaintext
23 lines
409 B
Plaintext
# /etc/csh.login
|
|
|
|
# System wide environment and startup programs, for login setup
|
|
|
|
if ($?PATH) then
|
|
setenv PATH "${PATH}:/usr/X11R6/bin"
|
|
else
|
|
setenv PATH "/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
|
|
endif
|
|
|
|
limit coredumpsize unlimited
|
|
|
|
setenv HOSTNAME `/bin/hostname`
|
|
set history=1000
|
|
|
|
if ( -f $HOME/.inputrc ) then
|
|
setenv INPUTRC /etc/inputrc
|
|
endif
|
|
|
|
if ( $?tcsh ) then
|
|
bindkey "^[[3~" delete-char
|
|
endif
|