Lacie 5Big2 Failed After Firmware Update

Re: Lacie 5Big2 Failed After Firmware Update

Postby fvdw » Tue Jul 09, 2013 6:17 pm

I know but I include already a version of mke2fs that supports that

you can use the command
Code: Select all
mke2fs-64


Its a static compiled full version of mke2fs
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie 5Big2 Failed After Firmware Update

Postby unlucky1 » Tue Jul 09, 2013 6:19 pm

Uh oh.

Code: Select all
root@(none):/ # mke2fs-64 --ext3 /dev/sef1
mke2fs-64: invalid option -- -
Usage: mke2fs-64 [-c|-l filename] [-b block-size] [-f fragment-size]
        [-i bytes-per-inode] [-I inode-size] [-J journal-options]
        [-G meta group size] [-N number-of-inodes]
        [-m reserved-blocks-percentage] [-o creator-os]
        [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
        [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
        [-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]
root@(none):/ # mke2fs-64 -ext3 /dev/sef1
mke2fs-64: invalid option -- e
Usage: mke2fs-64 [-c|-l filename] [-b block-size] [-f fragment-size]
        [-i bytes-per-inode] [-I inode-size] [-J journal-options]
        [-G meta group size] [-N number-of-inodes]
        [-m reserved-blocks-percentage] [-o creator-os]
        [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
        [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
        [-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]
unlucky1
Donator VIP
Donator VIP
 
Posts: 184
Joined: Sun Jul 07, 2013 3:18 pm

Re: Lacie 5Big2 Failed After Firmware Update

Postby unlucky1 » Tue Jul 09, 2013 6:21 pm

And will this 3Tb drive back up all 5 Tb disks? I think I had under 3Tb of data but just wondering...
unlucky1
Donator VIP
Donator VIP
 
Posts: 184
Joined: Sun Jul 07, 2013 3:18 pm

Re: Lacie 5Big2 Failed After Firmware Update

Postby fvdw » Tue Jul 09, 2013 6:22 pm

Mijzelf wrote:@fvdw: mdev should be able to do it. It does in the Lacie initrd. And else a simple script parsing /proc/partitions can do.


mdev is in the busybox binary but it doesn't seem to do the job for updating, need to llok to this later,
now I need to go for an hour or two (family business :mrgreen: )
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie 5Big2 Failed After Firmware Update

Postby unlucky1 » Tue Jul 09, 2013 6:23 pm

Okay, I'll catch you later then. I need to pick up my daughter from her friend's house and will be back soon. I'll keep checking back to see if you say anything.
unlucky1
Donator VIP
Donator VIP
 
Posts: 184
Joined: Sun Jul 07, 2013 3:18 pm

Re: Lacie 5Big2 Failed After Firmware Update

Postby Mijzelf » Tue Jul 09, 2013 6:25 pm

Code: Select all
 mke2fs-64 -j /dev/sef1

And if it will fit? Who knows.
Mijzelf
 
Posts: 255
Joined: Wed Nov 21, 2012 9:12 am

Re: Lacie 5Big2 Failed After Firmware Update

Postby fvdw » Tue Jul 09, 2013 6:25 pm

unlucky1 wrote:Uh oh.

Code: Select all
root@(none):/ # mke2fs-64 --ext3 /dev/sef1
mke2fs-64: invalid option -- -
Usage: mke2fs-64 [-c|-l filename] [-b block-size] [-f fragment-size]
        [-i bytes-per-inode] [-I inode-size] [-J journal-options]
        [-G meta group size] [-N number-of-inodes]
        [-m reserved-blocks-percentage] [-o creator-os]
        [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
        [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
        [-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]
root@(none):/ # mke2fs-64 -ext3 /dev/sef1
mke2fs-64: invalid option -- e
Usage: mke2fs-64 [-c|-l filename] [-b block-size] [-f fragment-size]
        [-i bytes-per-inode] [-I inode-size] [-J journal-options]
        [-G meta group size] [-N number-of-inodes]
        [-m reserved-blocks-percentage] [-o creator-os]
        [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
        [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
        [-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]



making an ext3 file system on a partition you do like this
Code: Select all
mke2fs-64 -j -m 1 /dev/sef1
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie 5Big2 Failed After Firmware Update

Postby Mijzelf » Tue Jul 09, 2013 6:32 pm

fvdw wrote:
Mijzelf wrote:@fvdw: mdev should be able to do it. It does in the Lacie initrd. And else a simple script parsing /proc/partitions can do.


mdev is in the busybox binary but it doesn't seem to do the job for updating, need to llok to this later,
now I need to go for an hour or two (family business :mrgreen: )

Code: Select all
#!/bin/sh

while read line
do
   if [ "$line" != "" ]; then
       device=` echo $line | cut -d ' ' -f 4 `
       major=` echo $line | cut -d ' ' -f 1 `
       minor=` echo $line | cut -d ' ' -f 2 `
      
       [ -f /dev/$device ] && rm /dev/$device
       mknod -m 666 /dev/$device b $major $minor
   fi
done </proc/partitions | grep -v major
Mijzelf
 
Posts: 255
Joined: Wed Nov 21, 2012 9:12 am

Re: Lacie 5Big2 Failed After Firmware Update

Postby unlucky1 » Tue Jul 09, 2013 7:59 pm

Okay, started converting the USB drive. I'll let you know when it's done!
unlucky1
Donator VIP
Donator VIP
 
Posts: 184
Joined: Sun Jul 07, 2013 3:18 pm

Re: Lacie 5Big2 Failed After Firmware Update

Postby unlucky1 » Tue Jul 09, 2013 8:21 pm

It seems to be nearly done. What's my next move for when it finishes? How do I back up the data to it in a meaningful way? Thanks!!
unlucky1
Donator VIP
Donator VIP
 
Posts: 184
Joined: Sun Jul 07, 2013 3:18 pm

PreviousNext

Return to Lacie 5big Network vs2

Who is online

Users browsing this forum: No registered users and 10 guests