mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:22:43 +00:00 
			
		
		
		
	 d24e287f8c
			
		
	
	
		d24e287f8c
		
	
	
	
	
		
			
			Since it is owned by root anyway, there is no need for 'additional security' to prevent modification of that directory. This makes it easier to quickly export files from Serenity. Fixes #5152.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Root file system. This is a fake entry which gets ignored by `mount -a`;
 | |
| # the actual logic for mounting root is in the kernel.
 | |
| /dev/hda	/	ext2	nodev,nosuid,ro
 | |
| # Remount /bin, /root, and /home while adding the appropriate permissions.
 | |
| /bin	/bin	bind	bind,nodev,ro
 | |
| /etc	/etc	bind	bind,nodev,nosuid
 | |
| /home	/home	bind	bind,nodev,nosuid
 | |
| /root	/root	bind	bind,nodev,nosuid
 | |
| /var	/var	bind	bind,nodev,nosuid
 | |
| /www	/www	bind	bind,nodev,nosuid
 | |
| 
 | |
| none	/proc	proc	nosuid
 | |
| none	/tmp	tmp	nodev,nosuid
 |