mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-03 16:05:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# $Id$
 | 
						|
# make_debian-X11 replacement
 | 
						|
 | 
						|
dd if=/dev/zero of=/swapfile bs=1024 count=32768
 | 
						|
mkswap /swapfile
 | 
						|
swapon /swapfile
 | 
						|
echo "Done."
 |