mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-04 08:15:36 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			630 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			630 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# This is usually enough for a minimalistic system
 | 
						|
dpkg-reconfigure xfree86-common
 | 
						|
dpkg-reconfigure xserver-common
 | 
						|
dpkg-reconfigure xfonts-base
 | 
						|
dpkg-reconfigure make-debian-x11
 | 
						|
 | 
						|
# You will want doc/info/man installed, and you may have to make a few
 | 
						|
# directories and add a few files.
 | 
						|
#dpkg-reconfigure --all
 | 
						|
 | 
						|
chown user /home/user
 | 
						|
chgrp user /home/user
 | 
						|
chown user /home/user/*
 | 
						|
chgrp user /home/user/*
 | 
						|
chown user /home/user/.*
 | 
						|
chgrp user /home/user/.*
 | 
						|
chmod 777 /tmp
 | 
						|
 | 
						|
# swim --initdb
 | 
						|
 | 
						|
# Generally a good idea since user-mode-linux doesn't run within itself.
 | 
						|
#rm /usr/bin/uml_*
 | 
						|
#rm /usr/bin/linux
 | 
						|
 | 
						|
/etc/cron.daily/find
 |