WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: rebuildfstab  (Read 4600 times)

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: rebuildfstab
« Reply #15 on: January 10, 2014, 11:15:39 AM »
See for yourself

mount /mnt/sdb1
mount | grep sdb1
mount -oremount,delalloc /mnt/sdb1
mount | grep sdb1
mount -oremount,nodelalloc /mnt/sdb1
mount | grep sdb1

Offline mbertrand

  • Full Member
  • ***
  • Posts: 225
Re: rebuildfstab
« Reply #16 on: January 10, 2014, 12:24:30 PM »
This is my out put of your test

tc@box:~$ mount /mnt/sdb1
tc@box:~$ mount | grep sdb1
/dev/sdb1 on /mnt/sdb1 type ext4 (rw,relatime,barrier=1,data=ordered)

tc@box:~$ sudo mount -oremount,delalloc /mnt/sdb1
tc@box:~$ mount | grep sdb1
/dev/sdb1 on /mnt/sdb1 type ext4 (rw,relatime,barrier=1,data=ordered)


tc@box:~$ sudo mount -oremount,nodelalloc /mnt/sdb1
tc@box:~$ mount | grep sdb1
/dev/sdb1 on /mnt/sdb1 type ext4 (rw,relatime,barrier=1,nodelalloc,data=ordered)

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: rebuildfstab
« Reply #17 on: January 10, 2014, 12:29:16 PM »
So delalloc is the default for ext4 and you now know what command you need to add to bootlocal.sh.

Offline mbertrand

  • Full Member
  • ***
  • Posts: 225
Re: rebuildfstab
« Reply #18 on: January 10, 2014, 12:41:48 PM »
Thanks