Difference between revisions of "Tips and Techniques"

From odroid US
Jump to: navigation, search
(Created page with " === Resize FAT partition === use gparted to resize the ext4 fs.. you'll need space to increase the fat partition. Backup the fat partition contents.. Upon opening space f...")
 
Line 8: Line 8:
  
 
Upon opening space for the new fat partition go to a console and type:
 
Upon opening space for the new fat partition go to a console and type:
 
+
<pre>
 
fdisk /dev/sdX
 
fdisk /dev/sdX
  
Line 26: Line 26:
  
 
mkfs.vfat -n boot /dev/sdX1
 
mkfs.vfat -n boot /dev/sdX1
 +
</pre>

Revision as of 12:38, 5 February 2013


Resize FAT partition

use gparted to resize the ext4 fs.. you'll need space to increase the fat partition.

Backup the fat partition contents..

Upon opening space for the new fat partition go to a console and type:

fdisk /dev/sdX

d
1

n
p
1
+3072


t
1
c
w

mkfs.vfat -n boot /dev/sdX1