mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-03 16:05:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#
 | 
						|
#  A basic .profile for root
 | 
						|
#  Provided by Horst von Brand
 | 
						|
#
 | 
						|
export HOSTNAME=Rescue
 | 
						|
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/OLDROOT/sbin:/OLDROOT/usr/sbin:/OLDROOT/bin:/OLDROOT/usr/bin:/OLDROOT/usr/local/sbin:/OLDROOT/usr/local/bin
 | 
						|
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
 | 
						|
 TERM=linux
 | 
						|
fi
 | 
						|
PS1='\h:\w# '
 | 
						|
PS2='> '
 | 
						|
unset ignoreeof
 | 
						|
umask 022
 | 
						|
 | 
						|
export PATH TERM PS1 PS2 
 | 
						|
 | 
						|
LD_LIBRARY_PATH=/lib:/usr/lib:/OLDROOT/lib:/OLDROOT/usr/lib
 | 
						|
export LD_LIBRARY_PATH
 |