Advertisement
patrickc

Untitled

Sep 23rd, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. 1. Boot into recovery
  2. novacom boot mem:// < installuImage
  3.  
  4. 2. Reduce media filesystem
  5. resizefat -v /dev/store/media 20G
  6.  
  7. 3. Reduce media partition
  8. lvm.static lvresize -L 20G /dev/store/media
  9.  
  10. 4. Create ext3fs partition
  11. lvm.static lvcreate -l 100%FREE -n ext3fs /dev/store
  12.  
  13. 5. Create ext3fs filesystem
  14. mkfs.ext3 /dev/store/ext3fs
  15.  
  16. 6. Add the ext3fs partition to the fstab file (it should be done automatically by the meta doctor, will research later)
  17. mount /dev/store/root /media/realroot
  18. echo /dev/mapper/store-ext3fs /media/ext3fs ext3 noatime,data=writeback 0 0 >> /media/realroot/etc/fstab
  19. umount /dev/store/root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement