Lacie Cloudbox

Re: Lacie Cloudbox

Postby rimoth » Tue Jul 30, 2013 10:59 pm

I now have removed the wireless element and also the homeplug element too!!! Laptop and nas are plugged into the same router.

Everything is much quicker!! However loading the firmware still took three minutes approx.

Install is currently now formatting sda5 - progressing well.
rimoth
Donator VIP
Donator VIP
 
Posts: 61
Joined: Mon Jul 08, 2013 9:33 am

Re: Lacie Cloudbox

Postby rimoth » Tue Jul 30, 2013 11:22 pm

The installation completed successfully & I copied the new kernel to sda6 on the nas. Unfortunately when the nas reboots it doesn't appear on the network.

I will try and download the kernel again and write it to sda6 on the nas.
rimoth
Donator VIP
Donator VIP
 
Posts: 61
Joined: Mon Jul 08, 2013 9:33 am

Re: Lacie Cloudbox

Postby rimoth » Tue Jul 30, 2013 11:46 pm

No luck trying to load the kernel to sda6 again.

Not sure what to try next. Is there a way I can check the new kernel? Can I load it as a standalone kernel?
rimoth
Donator VIP
Donator VIP
 
Posts: 61
Joined: Mon Jul 08, 2013 9:33 am

Re: Lacie Cloudbox

Postby fvdw » Tue Jul 30, 2013 11:48 pm

as said the webinterface can have a problem, try an ip scan to see which ip at has got assigend or see the dhcp table of your router

ps In the fvdw-sl consle there is an option to load an external kernel, you can use that one
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie Cloudbox

Postby rimoth » Wed Jul 31, 2013 12:03 am

I looked at attached devices on the router and could not see the nas.

I've also tried to load an external kernel, 161. It says "starting kernel" but then the window closes and no telnet window appears. I then tried launching telnet but couldn't make a connection to the nas.
rimoth
Donator VIP
Donator VIP
 
Posts: 61
Joined: Mon Jul 08, 2013 9:33 am

Re: Lacie Cloudbox

Postby fvdw » Wed Jul 31, 2013 12:53 am

yes no telnet window will appear in that case, you will need to connect to it using an ssh client like Putty as the normal firmware runs no telnet and also uses an ip assigned by the dhcp server in your network. (normally your router).
I do no see a reason why the normal kernel would not run, it is the same as standalone only without the init ram files system. Maybe it can find the partitions for whatever reason. Tomorrow we can do some test booting the kernel vi u-boot console and using console output feature. This will show us when the kernel is booting what it is doing just like in dmesg output.
I will write some instructions tomorrow how to do that

we will get this running 100% sure
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie Cloudbox

Postby fvdw » Wed Jul 31, 2013 7:40 am

Ok here is the instruction to boot the nas via u-boot terminal in fvdw-sl console.

So power off the nas , startup the fvdw-sl console, start the tftp server and open a u-boot command window using the fvdw-sl console.
Now it will wait for u-boot.
Start the nas and wait for the Marvell>> prompt

before booting the kernel lets see if u-boot can recognize your disk
give on the u-boot command line the command
Code: Select all
ide reset

It should respond that it found one device
for example something like this
Code: Select all
Marvell>> ide reset
ide reset

Reset IDE:
Marvell Serial ATA Adapter
Integrated Sata device found
[0 0 0]: Enable DMA mode
  Device 0 @ 0 0:
Model: SAMSUNG HD103SI                          Firm: 1AG01118 Ser#: S1Y5JDWZ626309
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 953869.7 MB = 931.5 GB (1953525168 x 512)

Now check if u-boot can read the partition table
Code: Select all
Marvell>> ide part

It should list if it found a valid partition table (gpt or ms-dos) and list it, for example something like this

Code: Select all
Marvell>> ide part
ide part

## Testing for valid EFI partition ##

Partition Map for IDE device 0  --   Partition Type: EFI
Part  Start LBA  End LBA
gpt1  2048    1050623 decimal
gpt2  1050624    2099199 decimal
gpt3  2099200    3147775 decimal
gpt4  3147776    3155967 decimal
gpt5  3155968    4728831 decimal
gpt6  4728832    4745215 decimal
gpt7  4745216    5793791 decimal
gpt8  5793792    1953525134 decimal
Marvell>>


If all that is ok and all partions are there try to boot the kernel with netconsole output. For this we will use the tfp server to boot our kernel present in the tftp directory of the fvdw-sl console.

Give as commands in the u-boot terminal (leave the text as it is below, do not fill in ip addresses, this is the correct syntax))
Code: Select all
Marvell>> setenv ipaddr ${ipaddr}

the response of the u-boot terminal should be:
Code: Select all
setenv ipaddr ${ipaddr}


Next enter as command
Code: Select all
Marvell>> setenv serverip ${serverip}

then
Marvell>> setenv bootargs console=ttyS0,115200 netconsole=6666@${ipaddr}/,6666@${serverip}/
edited 31-jul-2013 . Change this to this
Code: Select all
Marvell>> setenv bootargs console=ttyS0,115200 root=/dev/sda7 netconsole=6666@${ipaddr}/,6666@${serverip}/

then (in this command replace "name-of-uImage-in-tftp-directory" by the actual kernel you want to boot)
Code: Select all
Marvell>> tftpboot 0x800000 name-of-uImage-in-tftp-directory


This should give as output something like this (example)
Code: Select all
Marvell>> tftpboot 0x800000 UIMAGE-26394-NWSP2CL-59
tftpboot 0x800000 UIMAGE-26394-NWSP2CL-59
Using egiga0 device
TFTP from server 192.168.1.147; our IP address is 192.168.1.197
Filename 'UIMAGE-26394-NWSP2CL-59'.
Load address: 0x800000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ##########################
done
Bytes transferred = 3123520 (2fa940 hex)


Now boot the kernel
Code: Select all
Marvell>> bootm


this will give output that it checks checksum of kernel and then starts it
then boot log will follow after some time, example like this

Code: Select all
Linux version 2.6.39.4 (root@fvdwsl-nwsp2.local) (gcc version 4.5.4 (GCC) ) #88PREEMPT Tue Feb 19 22:14:37 GMT+1 2013
CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: LaCie Network Space v2
Ignoring unrecognised tag 0x41000403
Memory policy: ECC disabled, Data cache writeback
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 65024
Kernel command line: console=ttyS0,115200 netconsole=6666@192.168.1.252/,6666@192.168.1.44/
PID hash table entries: 1024 (order: 0, 4096 bytes)
Linux version 2.6.39.4 (root@fvdwsl-nwsp2.local) (gcc version 4.5.4 (GCC) ) #88PREEMPT Tue Feb 19 22:14:37 GMT+1 2013
...
<snip>


well hope it is clear enough ;)

ps you can copy output in the u-boot winow (right mouse click on top of window and find you way in the drop down menu that will appear)
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie Cloudbox

Postby rimoth » Wed Jul 31, 2013 8:09 pm

I'm sure 100% we will get it running too!!

Here's where I am at....

I started the tftp server and launched uboot console.

ide reset recognises the disk and the output from ide part is:
Code: Select all
Marvell>> ide part
ide part

Partition Map for IDE device 0  --   Partition Type: EFI

Part         Start LBA           End LBA
gpt1              1000            100FFF
gpt2            101000            200FFF
gpt3            201000            300FFF
gpt4            301000            304FFF
gpt5            305000            484FFF
gpt6            485000            488FFF
gpt7            489000            588FFF
gpt8            589000         15D50A38E
Marvell>>

My concern here is that gpt1 is very small compared to your listing and conversely gpt is very large!

I then loaded and booted the kernel...
Code: Select all
bootm
## Booting image at 00800000 ...
   Image Name:   Linux-3.9.5
   Created:      2013-07-29  22:26:08 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3686328 Bytes =  3.5 MB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
OK
bootargs from environment variables : console=ttyS0,115200 netconsole=6666@192.1
68.1.252/,6666@192.168.1.57/ cap=gpt,lba64

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 3.9.5 (root@fvdwsl-nwsp2.local) (gcc version 4.5.4
(GCC) ) #161 PREEMPT Mon Jul 29 23:25:25 GMT+1 2013
[    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397
7
[    0.000000] CPU: VIVT data cache, VIVT instruction cache
[    0.000000] Machine: familybox
[    0.000000] Ignoring unrecognised tag 0x41000403
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pag
es: 65024
[    0.000000] Kernel command line: console=ttyS0,115200 netconsole=6666@192.168
.1.252/,6666@192.168.1.57/ cap=gpt,lba64
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Memory: 256MB = 256MB total
[    0.000000] Memory: 252428k/252428k available, 9716k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xd0800000 - 0xff000000   ( 744 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc06a5260   (6773 kB)
[    0.000000]       .init : 0xc06a6000 - 0xc06d3b6c   ( 183 kB)
[    0.000000]       .data : 0xc06d4000 - 0xc07080e0   ( 209 kB)
[    0.000000]        .bss : 0xc07080e0 - 0xc0740a44   ( 227 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:114
[    0.000000] sched_clock: 32 bits at 166MHz, resolution 5ns, wraps every 25769
ms
[   21.108620] Calibrating delay loop... 996.14 BogoMIPS (lpj=4980736)
[   21.148580] pid_max: default: 32768 minimum: 301
[   21.148703] Mount-cache hash table entries: 512
[   21.149244] CPU: Testing write buffer coherency: ok
[   21.149574] Setting up static identity map for 0xc0509f50 - 0xc0509f8c
[   21.152046] xor: measuring software checksum speed
[   21.248574]    arm4regs  :   909.200 MB/sec
[   21.348549]    8regs     :   545.600 MB/sec
[   21.448546]    32regs    :   755.600 MB/sec
[   21.448562] xor: using function: arm4regs (909.200 MB/sec)
[   21.448577] pinctrl core: initialized pinctrl subsystem
[   21.448764] NET: Registered protocol family 16
[   21.449801] DMA: preallocated 1024 KiB pool for atomic coherent allocations
[   21.452268] Register Driver 'dummy'
[   21.452626] Kirkwood: MV88F6281-A1, TCLK=166666667.
[   21.452646] Feroceon L2: Enabling L2
[   21.452683] Feroceon L2: Cache support initialised.
[   21.453673] familybox, skipping usb init
[   21.475134] bio: create slab <bio-0> at 0
[   21.639198] raid6: int32x1     89 MB/s
[   21.808674] raid6: int32x2    121 MB/s
[   21.978996] raid6: int32x4    110 MB/s
[   22.148836] raid6: int32x8    128 MB/s
[   22.148847] raid6: using algorithm int32x8 (128 MB/s)
[   22.148855] raid6: using intx1 recovery algorithm
[   22.149713] SCSI subsystem initialized
[   22.150435] Register Driver 'Generic PHY'
[   22.150720] Register Driver 'usbfs'
[   22.150891] usbcore: registered new interface driver usbfs
[   22.150908] Register Driver 'hub'
[   22.151065] usbcore: registered new interface driver hub
[   22.151139] Register Driver 'usb'
[   22.151265] usbcore: registered new device driver usb
[   22.151530] Register Driver 'i2c-gpio'
[   22.153222] Switching to clocksource orion_clocksource
[   22.155253] NET: Registered protocol family 2
[   22.155742] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[   22.155801] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[   22.155834] TCP: Hash tables configured (established 2048 bind 2048)
[   22.155897] TCP: reno registered
[   22.155911] UDP hash table entries: 256 (order: 0, 4096 bytes)
[   22.155934] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[   22.156104] NET: Registered protocol family 1
[   22.156424] RPC: Registered named UNIX socket transport module.
[   22.156436] RPC: Registered udp transport module.
[   22.156444] RPC: Registered tcp transport module.
[   22.156452] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   22.156614] NetWinder Floating Point Emulator V0.97 (double precision)
[   22.156627] Register Driver 'gpio-usb'
[   22.157174] Register Driver 'alarmtimer'
[   22.243691] VFS: Disk quotas dquot_6.5.2
[   22.243743] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[   22.244109] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   22.244385] NTFS driver 2.1.30 [Flags: R/W].
[   22.244430] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[   22.244594] fuse init (API version 7.21)
[   22.245168] JFS: nTxBlock = 1972, nTxLock = 15776
[   22.245960] SGI XFS with ACLs, security attributes, realtime, large block/ino
de numbers, no debug enabled
[   22.246322] msgmni has been set to 493
[   22.247388] async_tx: api initialized (async)
[   22.247587] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2
53)
[   22.247601] io scheduler noop registered
[   22.247610] io scheduler deadline registered
[   22.247630] io scheduler cfq registered (default)
[   22.247648] Register Driver 'kirkwood-pinctrl'
[   22.247835] Register Driver 'mv_xor'
[   22.247885] mv_xor mv_xor.0: Marvell shared XOR driver
[   22.283308] mv_xor mv_xor.0: Marvell XOR: ( xor cpy )
[   22.323303] mv_xor mv_xor.0: Marvell XOR: ( xor fill cpy )
[   22.323541] mv_xor mv_xor.1: Marvell shared XOR driver
[   22.363302] mv_xor mv_xor.1: Marvell XOR: ( xor cpy )
[   22.403303] mv_xor mv_xor.1: Marvell XOR: ( xor fill cpy )
[   22.408626] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[   22.409271] Register Driver 'serial8250'
[   22.429558] serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 33) is a 16550A
[   22.963766] console [ttyS0] enabled
[   22.975426] brd: module loaded
[   22.982544] loop: module loaded
[   22.985744] Register Driver 'at24'
[   22.989343] Register Driver 'eeprom'
[   22.994043] Register Driver 'sd'
[   22.997487] Register Driver 'ahci'
[   23.001146] Register Driver 'sata_mv'
[   23.005104] Register Driver 'sata_mv'
[   23.008932] sata_mv sata_mv.0: cannot get optional clkdev
[   23.014499] sata_mv sata_mv.0: slots 32 ports 1
[   23.020517] scsi0 : sata_mv
[   23.023740] ata1: SATA max UDMA/133 irq 21
[   23.028826] Register Driver 'physmap-flash'
[   23.033220] Generic platform RAM MTD, (c) 2004 Simtec Electronics
[   23.039347] Register Driver 'mtd-ram'
[   23.043202] Register Driver 'm25p80'
[   23.047111] Register Driver 'gen_nand'
[   23.051103] Register Driver 'orion_nand'
[   23.055371] platform_driver_probe 5 retval= -19 code= 0
[   23.060658] Register Driver 'orion_spi'
[   23.065080] m25p80 spi0.0: mx25l4005a (512 Kbytes)
[   23.070035] Creating 2 MTD partitions on "spi_flash":
[   23.075154] 0x000000000000-0x00000007d000 : "u-boot"
[   23.081070] 0x00000007e000-0x00000007f000 : "u-boot-env"
[   23.087571] tun: Universal TUN/TAP device driver, 1.6
[   23.092599] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   23.099011] ipddp.c:v0.01 8/28/97 Bradford W. Johnson <johns393@maroon.tc.umn
.edu>
[   23.107268] ipddp0: Appletalk-IP Encap. mode by Bradford W. Johnson <johns393
@maroon.tc.umn.edu>
[   23.116090] Register Driver 'mv643xx_eth'
[   23.120213] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   23.127155] libphy: mv643xx_eth smi: probed
[   23.131496] Register Driver 'mv643xx_eth_port'
[   23.138070] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address
 00:d0:4b:94:be:05
[   23.146949] PPP generic driver version 2.4.2
[   23.151509] PPP Deflate Compression module registered
[   23.156747] PPP MPPE Compression module registered
[   23.161512] NET: Registered protocol family 24
[   23.166029] pegasus: v0.6.14 (2006/09/27), Pegasus/Pegasus II USB Ethernet dr
iver
[   23.173517] Register Driver 'pegasus'
[   23.177404] usbcore: registered new interface driver pegasus
[   23.183035] Register Driver 'ipheth'
[   23.186884] usbcore: registered new interface driver ipheth
[   23.193532] aoe: AoE v81 initialised.
[   23.197234] Register Driver 'rtc-ds1307'
[   23.201352] Register Driver 'rtc-mv'
[   23.205344] rtc-mv rtc-mv: rtc core: registered rtc-mv as rtc0
[   23.211324] platform_driver_probe 5 retval= 0 code= 0
[   23.216529] i2c /dev entries driver
[   23.220133] Register Driver 'mv64xxx_i2c'
[   23.224430] Register Driver 'gpio-fan'
[   23.228409] Register Driver 'lm75'
[   23.231998] Register Driver 'lm77'
[   23.235646] md: linear personality registered for level -1
[   23.241105] md: raid0 personality registered for level 0
[   23.246449] md: raid1 personality registered for level 1
[   23.251741] md: raid10 personality registered for level 10
[   23.257281] md: raid6 personality registered for level 6
[   23.262565] md: raid5 personality registered for level 5
[   23.267889] md: raid4 personality registered for level 4
[   23.273401] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-d
evel@redhat.com
[   23.281946] device-mapper: multipath: version 1.5.1 loaded
[   23.287451] device-mapper: multipath round-robin: version 1.0.0 loaded
[   23.293983] device-mapper: multipath queue-length: version 0.1.0 loaded
[   23.300566] device-mapper: multipath service-time: version 0.2.0 loaded
[   23.307233] device-mapper: dm-log-userspace: version 1.1.0 loaded
[   23.313339] device-mapper: raid: Loading target version 1.4.2
[   23.319058] Register Driver 'mmcblk'
[   23.322823] Register Driver 'leds-gpio'
[   23.326835] leds-gpio leds-gpio: pins are not configured from the driver
[   23.333848] Register Driver 'leds-ns2'
[   23.337811] Register Driver 'leds-ns2l'
[   23.342070] Register Driver 'leds-netxbig'
[   23.346565] Register Driver 'mv_crypto'
[   23.351245] Register Driver 'hid-generic'
[   23.355586] Netfilter messages via NETLINK v0.30.
[   23.360316] nf_conntrack version 0.5.0 (3944 buckets, 15776 max)
[   23.366808] IPv4 over IPv4 tunneling driver
[   23.371838] ip_tables: (C) 2000-2006 Netfilter Core Team
[   23.377359] TCP: cubic registered
[   23.380695] NET: Registered protocol family 10
[   23.385942] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   23.391401] sit: IPv6 over IPv4 tunneling driver
[   23.396821] NET: Registered protocol family 17
[   23.401264] NET: Registered protocol family 5
[   23.405785] NET: Registered protocol family 37
[   23.410295] VFP support v0.3: not present
[   23.415326] netpoll: netconsole: local port 6666
[   23.419928] netpoll: netconsole: local IPv4 address 192.168.1.252
[   23.426089] netpoll: netconsole: interface 'eth0'
[   23.430769] netpoll: netconsole: remote port 6666
[   23.435522] netpoll: netconsole: remote IPv4 address 192.168.1.57
[   23.441587] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   23.448465] netpoll: netconsole: device eth0 not up yet, forcing it
[   23.456666] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.533282] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   23.573314] ata1.00: ATA-8: ST3000DM001-1CH166, CC44, max UDMA/133
[   23.579467] ata1.00: 5860533168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   23.883307] ata1.00: configured for UDMA/133
[   23.903558] scsi 0:0:0:0: Direct-Access     ATA      ST3000DM001-1CH1 CC44 PQ
: 0 ANSI: 5
[   23.912499] sd 0:0:0:0: [sda] 5860533168 512-byte logical blocks: (3.00 TB/2.
72 TiB)
[   23.920632] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   23.926111] sd 0:0:0:0: [sda] Write Protect is off
[   23.930990] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, does
n't support DPO or FUA
[   24.040735]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
[   24.048632] sd 0:0:0:0: [sda] Attached SCSI disk
[   26.277000] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, ful
l duplex, flow control disabled
[   26.286816] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.296091] console [netcon0] enabled
[   26.299747] netconsole: network logging started
[   26.304387] Register Driver 'gpio-keys'
[   26.308706] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[   26.315829] rtc-mv rtc-mv: setting system clock to 2002-06-10 10:12:59 UTC (1
023703979)
[   26.324213] md: Skipping autodetection of RAID arrays. (raid=autodetect will
force)
[   26.331979] VFS: Cannot open root device "(null)" or unknown-block(0,0): erro
r -6
[   26.339496] Please append a correct "root=" boot option; here are the availab
le partitions:
[   26.347896] 1f00             500 mtdblock0  (driver?)
[   26.352968] 1f01               4 mtdblock1  (driver?)
[   26.358087] 0800      2930266584 sda  driver: sd
[   26.362721]   0801          524288 sda1 00000000-0000-0000-0000-000000000000
[   26.369818]   0802          524288 sda2 00000000-0000-0000-0000-000000000000
[   26.376948]   0803          524288 sda3 00000000-0000-0000-0000-000000000000
[   26.384030]   0804            8192 sda4 00000000-0000-0000-0000-000000000000
[   26.391086]   0805          786432 sda5 00000000-0000-0000-0000-000000000000
[   26.398164]   0806            8192 sda6 00000000-0000-0000-0000-000000000000
[   26.405242]   0807          524288 sda7 00000000-0000-0000-0000-000000000000
[   26.412298]   0808      2927364551 sda8 00000000-0000-0000-0000-000000000000
[   26.419377] Kernel panic - not syncing: VFS: Unable to mount root fs on unkno
wn-block(0,0)
[   26.427630] [<c00184ac>] (unwind_backtrace+0x0/0xe4) from [<c0504260>] (panic
+0x80/0x1d8)
[   26.435792] [<c0504260>] (panic+0x80/0x1d8) from [<c06a6c64>] (mount_block_ro
ot+0x1f0/0x234)
[   26.444202] [<c06a6c64>] (mount_block_root+0x1f0/0x234) from [<c06a6e74>] (mo
unt_root+0xd0/0xf0)
[   26.452963] [<c06a6e74>] (mount_root+0xd0/0xf0) from [<c06a6fe8>] (prepare_na
mespace+0x154/0x1a8)
[   26.461810] [<c06a6fe8>] (prepare_namespace+0x154/0x1a8) from [<c06a6880>] (k
ernel_init_freeable+0x168/0x1ac)
[   26.471700] [<c06a6880>] (kernel_init_freeable+0x168/0x1ac) from [<c0502008>]
 (kernel_init+0x8/0xe4)
[   26.480808] [<c0502008>] (kernel_init+0x8/0xe4) from [<c0012450>] (ret_from_f
ork+0x14/0x24)


The kernel attempts to load but then I can see it panics when it cannot mount root fs.

Any ideas?
rimoth
Donator VIP
Donator VIP
 
Posts: 61
Joined: Mon Jul 08, 2013 9:33 am

Re: Lacie Cloudbox

Postby fvdw » Wed Jul 31, 2013 8:45 pm

yep it seems to be unable to mount sda7
(partition table seems to be ok to me.

Can you fire it up using the standalone kernel and then try if mounting of sda7 is possible
In telnet

edited
Code: Select all
mkdir /sda7
mount /dev/sda7 /sda7

And check if you can get a directory listing
Could be an issue with incorrect dev node, we have seen this also with the 5big2

Also when being in telnet, execute
Code: Select all
cat /proc/partitions

and post the output
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Lacie Cloudbox

Postby fvdw » Wed Jul 31, 2013 8:54 pm

ps the u-boot output on partition table specifies LBA in hex code (or number of sector being start and end.
The number listed means sda1 is 511 MB which is ok
sda8 is the big data partition and from the number given by uboot it looks like being 3 TB in size
fvdw
Site Admin - expert
 
Posts: 13471
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

PreviousNext

Return to Lacie cloudbox (white casing)

Who is online

Users browsing this forum: Bing Bot and 9 guests