Accessing my cloudbox-slow blinking blue light

Re: Accessing my cloudbox-slow blinking blue light

Postby fvdw » Sat May 07, 2016 9:54 am

Your disc seems not dead, at least the partition table is accesible.
Lets try to assemble the raid array for the partition containing your files. Give this command

Code: Select all
mdadm --assemble /dev/md0 /dev/sda8

Now mount it
Code: Select all
mkdir /md0
mount /dev/md0 /md0

And list content
Code: Select all
cd /md0
ls -al


Post the output of this last command
fvdw
Site Admin - expert
 
Posts: 13472
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Accessing my cloudbox-slow blinking blue light

Postby deepeedoubleu » Sat May 07, 2016 3:41 pm

I appear to be receiving some errors. Here is the output below.


root@fvdw-sta-kirkwood:/ # mdam --assemble /dev/md0 /dev/sda8
-sh: mdam: not found
root@fvdw-sta-kirkwood:/ # mkdir /md0 /md0
mkdir: can't create directory '/md0': File exists
root@fvdw-sta-kirkwood:/ # mount /dev/md0 /md0
mount: mounting /dev/md0 on /md0 failed: Input/output error
root@fvdw-sta-kirkwood:/ # cd /md0
root@fvdw-sta-kirkwood:/md0 # ls -al
total 0
drwxr-xr-x 2 root root 40 Jan 1 00:03 .
drwxrwxrwt 13 root root 360 Jan 1 00:03 ..
root@fvdw-sta-kirkwood:/md0 #
deepeedoubleu
 
Posts: 29
Joined: Thu May 05, 2016 3:59 pm

Re: Accessing my cloudbox-slow blinking blue light

Postby fvdw » Sat May 07, 2016 4:04 pm

:disapprove
This is because you made an error in the command to assemble the raid arry
You should use "mdadm" and not "mdam".
fvdw
Site Admin - expert
 
Posts: 13472
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Accessing my cloudbox-slow blinking blue light

Postby deepeedoubleu » Sat May 07, 2016 5:01 pm

Sorry anout that. Unfortunately, it still cannot be found. Can I try something else?

root@fvdw-sta-kirkwood:/ # mdadm --assemble /dev/md0 /dev/sda8
-sh: mdadm: not found
root@fvdw-sta-kirkwood:/ #

Thank you
deepeedoubleu
 
Posts: 29
Joined: Thu May 05, 2016 3:59 pm

Re: Accessing my cloudbox-slow blinking blue light

Postby fvdw » Sat May 07, 2016 7:52 pm

My fault we need upload mdadm first, give this command.
IMPORTANT REMARK
In this command replace "ip-pc" by the actual ip address of your pc running the fvdw-sl console (this ip is shown in upper right corner of the fvdw-sl main window
Code: Select all
tftp -r mdadm -l /bin/mdadm -g ip-pc
chmod 755 /bin/mdadm


After this mdadm command should work

Ps everytime that you reboot your cloudbox and upload the standalone kernel and you want to use mdadm you need to upload it as described in this post. This is because the standalone kernel and its prograns run from memory (RAM) which is erased when you reboot the cloudbox.

---edit---
With the last version 6.0, mdadm is no longer available with fvdw-sl console package. You need to use a new option via fvdw-programs menu, to get directly some advanced tools like mdadm :
* run on the telnet window the command: fvdw-sl-programs
(then a menu will appear)
* select "Upload and extract glibc mini and tools"

Jocko
fvdw
Site Admin - expert
 
Posts: 13472
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Accessing my cloudbox-slow blinking blue light

Postby deepeedoubleu » Sun May 08, 2016 2:21 am

Thank you! It seems get an error when trying to mount the drive. Any further suggestions would be appreciated.

fvdw-sta-kirkwood login: root
Password:
root@fvdw-sta-kirkwood:/ # tftp -r mdadm -l /bin/mdadm -g 10.0.1.7
mdadm 100% |****************************************************************| 1100k 0:00:00 ETA
root@fvdw-sta-kirkwood:/ # chmod 755 /bin/mdadm
root@fvdw-sta-kirkwood:/ # mdadm --assemble /dev/md0 /dev/sda8
mdadm: /dev/md0 has been started with 1 drive.
root@fvdw-sta-kirkwood:/ # mkdir /md0
root@fvdw-sta-kirkwood:/ # mount /dev/md0 /md0
mount: mounting /dev/md0 on /md0 failed: Function not implemented
root@fvdw-sta-kirkwood:/ # cd /md0
root@fvdw-sta-kirkwood:/md0 # ls -al
total 0
drwxr-xr-x 2 root root 40 Jan 1 00:03 .
drwxrwxrwt 13 root root 360 Jan 1 00:03 ..
root@fvdw-sta-kirkwood:/md0 #
deepeedoubleu
 
Posts: 29
Joined: Thu May 05, 2016 3:59 pm

Re: Accessing my cloudbox-slow blinking blue light

Postby fvdw » Sun May 08, 2016 8:40 am

The fact that the raid array could be assembled is good, it means it is healthy and your data will be most probably ok. I need to do some reading on how to mount this array. In the past we did some work on repairing another cloudbox there we encountered also this problem with mounting. But I forgot how we solved it :scratch so need reread the info. This will be later this evening or in coming days as it is beautiful weather and mothers day and family goes first today. But Ivam quite sure we can rescue your data ;)
fvdw
Site Admin - expert
 
Posts: 13472
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Accessing my cloudbox-slow blinking blue light

Postby Jocko » Sun May 08, 2016 8:56 am

@fvdw,

To be able to mount data partition, deepeedoubleu should install xfs libs

About previous cases, the user needed to use xfs_repair to repair the fs
Jocko
Site Admin - expert
 
Posts: 11558
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: Accessing my cloudbox-slow blinking blue light

Postby fvdw » Sun May 08, 2016 12:40 pm

@jocko, it is more complicated, seems we will need also LVM TOOLS for partition 8
fvdw
Site Admin - expert
 
Posts: 13472
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Accessing my cloudbox-slow blinking blue light

Postby deepeedoubleu » Sun May 08, 2016 8:43 pm

Thank you all for your help. I am very patient. I wil do whatever i can to recover the data on this drive. Enjoy your day and please provide an update when you can.
deepeedoubleu
 
Posts: 29
Joined: Thu May 05, 2016 3:59 pm

PreviousNext

Return to Lacie cloudbox (white casing)

Who is online

Users browsing this forum: Bing Bot and 10 guests