Upgrading my Pogoplug July 16, 2014 03:24PM |
Registered: 10 years ago Posts: 19 |
Re: Upgrading my Pogoplug July 16, 2014 08:14PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 16, 2014 09:18PM |
Registered: 10 years ago Posts: 19 |
Re: Upgrading my Pogoplug July 16, 2014 10:35PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 20, 2014 07:20AM |
Registered: 10 years ago Posts: 19 |
U-Boot 2011.12 (Feb 20 2012 - 21:21:59) Pogoplug E02 arm-none-linux-gnueabi-gcc (Sourcery G++ Lite 2009q3-67) 4.4.1 GNU ld (Sourcery G++ Lite 2009q3-67) 2.19.51.20090709 Hit any key to stop autoboot: 0 (Re)start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 3 USB Device(s) found scanning bus for storage devices... EHCI timed out on TD - token=0x1f8c80 1 Storage Device(s) found Loading file "/rescueme" from usb device 0:1 (usbda1) Failed to mount ext2 filesystem... ** Bad ext2 partition or disk - usb 0:1 ** reading /rescueme.txt ** Unable to read "/rescueme.txt" from usb 0:1 ** Creating 1 MTD partitions on "nand0": 0x000002500000-0x000008000000 : "mtd=3" UBI: attaching mtd1 to ubi0 UBI: physical eraseblock size: 131072 bytes (128 KiB) UBI: logical eraseblock size: 129024 bytes UBI: smallest flash I/O unit: 2048 UBI: sub-page size: 512 UBI: VID header offset: 512 (aligned 512) UBI: data offset: 2048 UBI: attached mtd1 to ubi0 UBI: MTD device name: "mtd=3" UBI: MTD device size: 91 MiB UBI: number of good PEBs: 726 UBI: number of bad PEBs: 2 UBI: max. allowed volumes: 128 UBI: wear-leveling threshold: 4096 UBI: number of internal volumes: 1 UBI: number of user volumes: 0 UBI: available PEBs: 715 UBI: total number of reserved PEBs: 11 UBI: number of PEBs reserved for bad PEB handling: 7 UBI: max/mean erase counter: 1/1 UBIFS error (pid 0): ubifs_get_sb: cannot open "ubi:rootfs", error -19 Error reading superblock on volume 'ubi:rootfs'! (Re)start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 3 USB Device(s) found scanning bus for storage devices... 1 Storage Device(s) found Loading file "/boot/uImage" from usb device 0:1 (usbda1) Failed to mount ext2 filesystem... ** Bad ext2 partition or disk - usb 0:1 ** Loading file "/boot/uInitrd" from usb device 0:1 (usbda1) Failed to mount ext2 filesystem... ** Bad ext2 partition or disk - usb 0:1 ** Wrong Image Format for bootm command ERROR: can't get kernel image! stopping USB.. NAND read: device 0 offset 0x100000, size 0x400000 4194304 bytes read: OK ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-3.3.2-kirkwide Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3627768 Bytes = 3.5 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ...
rescue:~# fw_printenv ethact=egiga0 bootdelay=3 baudrate=115200 mainlineLinux=yes console=ttyS0,115200 led_init=green blinking led_exit=green off led_error=orange blinking mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data) mtdids=nand0=orion_nand partition=nand0,2 stdin=serial stdout=serial stderr=serial rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi force_rescue=0 force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi ubifs_mtd=3 ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data && ubifsmount rootfs && ubifsload 0x800000 /boot/uImage && ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 && ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo "Found bootable drive on usb $usb"; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done usb_scan_list=1 2 3 4 usb_scan_1=usb=0:1 dev=sda1 usb_scan_2=usb=1:1 dev=sdb1 usb_scan_3=usb=2:1 dev=sdc1 usb_scan_4=usb=3:1 dev=sdd1 usb_device=0:1 usb_rootdelay=10 usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run rescue_bootcmd; run pogo_bootcmd; reset ethaddr=00:25:31:04:A4:5F arcNumber=2097 preboot=run if_netconsole start_netconsole ipaddr=192.168.1.97 if_netconsole=ping $serverip start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version; serverip=192.168.1.99 usb_init=usb start; setenv usb_root LABEL=rootfs set_bootargs_rescue=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts bootcmd_rescue=run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000 bootcmd_pogo=run bootcmd_rescue rescue_installed=1 usb_root=/dev/sda3 usb_rootfstype=ext3
Re: Upgrading my Pogoplug July 20, 2014 02:53PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 21, 2014 06:12AM |
Registered: 10 years ago Posts: 19 |
GPT fdisk (gdisk) version 0.8.5 Partition table scan: MBR: protective BSD: not present APM: not present GPT: present Found valid GPT with protective MBR; using GPT. Disk /dev/sdb: 732566645 sectors, 2.7 TiB Logical sector size: 4096 bytes Disk identifier (GUID): 34534D18-412E-4358-9873-8A60D5930157 Partition table holds up to 128 entries First usable sector is 6, last usable sector is 732566639 Partitions will be aligned on 256-sector boundaries Total free space is 362 sectors (1.4 MiB) Number Start (sector) End (sector) Size Code Name 1 256 488191 1.9 GiB 8200 swap 2 488192 727446527 2.7 TiB 8300 data 3 727446528 732566527 19.5 GiB 8300 root
U-Boot 2014.01-tld-1 (Mar 17 2014 - 21:43:49) Pogo E02 gcc (Debian 4.6.3-14) 4.6.3 GNU ld (GNU Binutils for Debian) 2.22 Hit any key to stop autoboot: 0 (Re)start USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 4 USB Device(s) found scanning usb for storage devices... EHCI timed out on TD - token=0x1f8c80 2 Storage Device(s) found Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** ** Unrecognized filesystem type ** UBI: attaching mtd1 to ubi0 UBI: physical eraseblock size: 131072 bytes (128 KiB) UBI: logical eraseblock size: 129024 bytes UBI: smallest flash I/O unit: 2048 UBI: sub-page size: 512 UBI: VID header offset: 512 (aligned 512) UBI: data offset: 2048 UBI: attached mtd1 to ubi0 UBI: MTD device name: "mtd=3" UBI: MTD device size: 91 MiB UBI: number of good PEBs: 726 UBI: number of bad PEBs: 2 UBI: max. allowed volumes: 128 UBI: wear-leveling threshold: 4096 UBI: number of internal volumes: 1 UBI: number of user volumes: 0 UBI: available PEBs: 715 UBI: total number of reserved PEBs: 11 UBI: number of PEBs reserved for bad PEB handling: 7 UBI: max/mean erase counter: 1/1 UBIFS error (pid 0): ubifs_get_sb: cannot open "rootfs", error -22 UBIFS error (pid 0): ubifs_mount: Error reading superblock on volume 'rootfs' errno=-22! ubifsmount - mount UBIFS volume Usage: ubifsmount <volume-name> - mount 'volume-name' volume (Re)start USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 4 USB Device(s) found scanning usb for storage devices... 2 Storage Device(s) found Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** Wrong Image Format for bootm command ERROR: can't get kernel image! stopping USB.. NAND read: device 0 offset 0x100000, size 0x400000 4194304 bytes read: OK ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-3.3.2-kirkwide Created: 2012-10-29 22:52:12 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3627768 Bytes = 3.5 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Starting kernel ...
angio@PogoPlug:~$ sudo fw_printenv ethact=egiga0 bootdelay=3 baudrate=115200 mainlineLinux=yes console=ttyS0,115200 led_init=green blinking led_exit=green off led_error=orange blinking mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data) mtdids=nand0=orion_nand partition=nand0,2 stdin=serial stdout=serial stderr=serial rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi force_rescue=0 force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi ubifs_mtd=3 ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data && ubifsmount rootfs && ubifsload 0x800000 /boot/uImage && ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 && ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo "Found bootable drive on usb $usb"; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done usb_scan_list=1 2 3 4 usb_scan_1=usb=0:1 dev=sda1 usb_scan_2=usb=1:1 dev=sdb1 usb_scan_3=usb=2:1 dev=sdc1 usb_scan_4=usb=3:1 dev=sdd1 usb_device=0:1 usb_rootdelay=10 usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run rescue_bootcmd; run pogo_bootcmd; reset ethaddr=00:25:31:04:A4:5F preboot=run if_netconsole start_netconsole ipaddr=192.168.1.97 if_netconsole=ping $serverip start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version; serverip=192.168.1.99 usb_init=usb start; setenv usb_root LABEL=rootfs set_bootargs_rescue=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts bootcmd_rescue=run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000 bootcmd_pogo=run bootcmd_rescue rescue_installed=1 usb_rootfstype=ext3 usb_root=/dev/sda1 arcNumber=3542
Re: Upgrading my Pogoplug July 21, 2014 03:00PM |
Admin Registered: 13 years ago Posts: 18,898 |
> Number Start (sector) End (sector) Size > Code Name > 1 256 488191 1.9 GiB > 8200 swap > 2 488192 727446527 2.7 TiB > 8300 data > 3 727446528 732566527 19.5 GiB > 8300 root
> scanning bus 0 for devices... 4 USB Device(s) > found > scanning usb for storage devices... 2 > Storage Device(s) found > Failed to mount ext2 filesystem... > ** Unrecognized filesystem type ** > Failed to mount ext2 filesystem... > ** Unrecognized filesystem type ** > Wrong Image Format for bootm command
> usb_init=usb start; setenv usb_root LABEL=rootfs
Re: Upgrading my Pogoplug July 21, 2014 04:11PM |
Registered: 10 years ago Posts: 19 |
$ sudo tune2fs -l /dev/sdb3 tune2fs 1.42.5 (29-Jul-2012) Filesystem volume name: rootfs
$ sudo gdisk -l /dev/sdb Number Start (sector) End (sector) Size Code Name 1 256 488191 1.9 GiB 8200 swap 2 488192 727446527 2.7 TiB 8300 data 3 727446528 732566527 19.5 GiB 8300 rootfs
U-Boot 2014.01-tld-1 (Mar 17 2014 - 21:43:49) Pogo E02 gcc (Debian 4.6.3-14) 4.6.3 GNU ld (GNU Binutils for Debian) 2.22 Hit any key to stop autoboot: 0 (Re)start USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 3 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found ** File not found /rescueme ** ** Unrecognized filesystem type ** UBI: attaching mtd1 to ubi0 UBI: physical eraseblock size: 131072 bytes (128 KiB) UBI: logical eraseblock size: 129024 bytes UBI: smallest flash I/O unit: 2048 UBI: sub-page size: 512 UBI: VID header offset: 512 (aligned 512) UBI: data offset: 2048 UBI: attached mtd1 to ubi0 UBI: MTD device name: "mtd=3" UBI: MTD device size: 91 MiB UBI: number of good PEBs: 726 UBI: number of bad PEBs: 2 UBI: max. allowed volumes: 128 UBI: wear-leveling threshold: 4096 UBI: number of internal volumes: 1 UBI: number of user volumes: 0 UBI: available PEBs: 715 UBI: total number of reserved PEBs: 11 UBI: number of PEBs reserved for bad PEB handling: 7 UBI: max/mean erase counter: 1/1 UBIFS error (pid 0): ubifs_get_sb: cannot open "rootfs", error -22 UBIFS error (pid 0): ubifs_mount: Error reading superblock on volume 'rootfs' errno=-22! ubifsmount - mount UBIFS volume Usage: ubifsmount <volume-name> - mount 'volume-name' volume (Re)start USB...
Re: Upgrading my Pogoplug July 21, 2014 04:20PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 22, 2014 06:28AM |
Registered: 10 years ago Posts: 19 |
PogoE02> usb part 0 u s b p a r t 0 Partition Map for USB device 0 -- Partition Type: EFI Part Start LBA End LBA Name Attributes Type UUID Partition UUID 1 0x00000100 0x000772ff "swap" attrs: 0x0000000000000000 type: 0657fd6d-a4ab-43c4-84e5-0933c84b4f4f uuid: d1244262-a9ec-4b76-8de6-90273128eba3 2 0x00077300 0x2b5bf3ff "data" attrs: 0x0000000000000000 type: 0fc63daf-8483-4772-8e79-3d69d8477de4 uuid: 4eea64f2-38dd-491a-b650-97d4e6c01688 3 0x2b5bf400 0x2baa13ff "rootfs" attrs: 0x0000000000000000 type: 0fc63daf-8483-4772-8e79-3d69d8477de4 uuid: b588afb8-0c3a-4c0c-8358-782f866fa9d3
Re: Upgrading my Pogoplug July 22, 2014 03:05PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 25, 2014 06:24AM |
Registered: 10 years ago Posts: 19 |
2261056 bytes read in 244 ms (8.8 MiB/s) EHCI timed out on TD - token=0xd8d80 EHCI timed out on TD - token=0xd8d80 EHCI timed out on TD - token=0xd8d80 ** ext4fs_devread read error - block
Re: Upgrading my Pogoplug July 25, 2014 02:27PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 25, 2014 03:42PM |
Registered: 10 years ago Posts: 19 |
Re: Upgrading my Pogoplug July 25, 2014 04:29PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Upgrading my Pogoplug July 25, 2014 09:57PM |
Registered: 10 years ago Posts: 19 |
USB0: USB EHCI 1.00 scanning bus 0 for devices... 3 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found 2461416 bytes read in 323 ms (7.3 MiB/s) EHCI timed out on TD - token=0xd8d80 EHCI timed out on TD - token=0xd8d80 EHCI timed out on TD - token=0xd8d80 ** ext4fs_devread read error - block
PogoE02> usb part 1 u s b p a r t 1 Partition Map for USB device 1 -- Partition Type: EFI GUID Partition Table Header signature is wrong:0x0 != 0x5452415020494645 print_part_efi: *** ERROR: Invalid GPT ***
[ 15.280138] udevd[52]: starting version 175 [ 15.299169] usb 1-1.4: Product: External USB 3.0 [ 15.303812] usb 1-1.4: Manufacturer: TOSHIBA [ 15.315943] usb 1-1.4: SerialNumber: 20130717010509 [ 15.394516] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 15.433344] SCSI subsystem initialized [ 15.469301] usb-storage 1-1.2:1.0: USB Mass Storage device detected [ 15.501491] libphy: orion_mdio_bus: probed [ 15.529225] scsi0 : usb-storage 1-1.2:1.0 [ 15.560164] usb-storage 1-1.4:1.0: USB Mass Storage device detected [ 15.604092] scsi1 : usb-storage 1-1.4:1.0 [ 15.615623] usbcore: registered new interface driver usb-storage [ 16.527148] scsi 0:0:0:0: Direct-Access SanDisk U3 Cruzer Micro 3.27 PQ: 0 ANSI: 2 [ 16.596359] sd 0:0:0:0: [sda] 4013710 512-byte logical blocks: (2.05 GB/1.91 GiB) [ 16.607886] scsi 1:0:0:0: Direct-Access TOSHIBA External USB 3.0 0201 PQ: 0 ANSI: 6 [ 16.625945] sd 0:0:0:0: [sda] Write Protect is off [ 16.630782] sd 0:0:0:0: [sda] Mode Sense: 03 00 00 00 [ 16.631335] sd 0:0:0:0: [sda] No Caching mode page found [ 16.639343] sd 1:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16). [ 16.646768] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 16.664488] sd 1:0:0:0: [sdb] 5860533160 512-byte logical blocks: (3.00 TB/2.72 TiB) [ 16.672963] sd 0:0:0:0: [sda] No Caching mode page found [ 16.685262] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 16.691984] sd 1:0:0:0: [sdb] Write Protect is off [ 16.706138] sd 1:0:0:0: [sdb] Mode Sense: 2b 00 00 00 [ 16.707988] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 16.714458] sda: sda1 [ 16.719448] sd 0:0:0:0: [sda] No Caching mode page found [ 16.724809] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 16.736289] sd 1:0:0:0: Attached scsi generic sg1 type 0 [ 16.745908] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 16.847646] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:25:31:04:a4:5f [ 47.666186] usb 1-1.4: reset high-speed USB device number 4 using orion-ehci [ 47.786351] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 47.799078] sd 1:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16). [ 47.836848] sdb: unknown partition table [ 47.851960] sd 1:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16). [ 47.866972] sd 1:0:0:0: [sdb] Attached SCSI disk [ 58.210365] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 158.211931] usb 1-1.4: USB disconnect, device number 4 [ 163.826309] usb 1-1.1: new high-speed USB device number 5 using orion-ehci [ 163.937931] usb 1-1.1: New USB device found, idVendor=0480, idProduct=d010 [ 163.944860] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 163.952740] usb 1-1.1: Product: External USB 3.0 [ 163.957761] usb 1-1.1: Manufacturer: TOSHIBA [ 163.962052] usb 1-1.1: SerialNumber: 20130717010509 [ 163.972146] usb-storage 1-1.1:1.0: USB Mass Storage device detected [ 163.987265] scsi2 : usb-storage 1-1.1:1.0 [ 170.948423] scsi 2:0:0:0: Direct-Access TOSHIBA External USB 3.0 0201 PQ: 0 ANSI: 6 [ 170.966507] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 170.972345] sd 2:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16). [ 171.011270] sd 2:0:0:0: [sdb] 732566645 4096-byte logical blocks: (3.00 TB/2.72 TiB) [ 171.033475] sd 2:0:0:0: [sdb] Write Protect is off [ 171.049547] sd 2:0:0:0: [sdb] Mode Sense: 2b 00 00 00 [ 171.050159] sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 171.084983] sd 2:0:0:0: [sdb] 732566645 4096-byte logical blocks: (3.00 TB/2.72 TiB) [ 171.130093] sdb: sdb1 sdb2 sdb3 [ 171.147847] sd 2:0:0:0: [sdb] 732566645 4096-byte logical blocks: (3.00 TB/2.72 TiB) [ 171.165987] sd 2:0:0:0: [sdb] Attached SCSI disk
Re: Upgrading my Pogoplug July 26, 2014 03:30PM |
Admin Registered: 13 years ago Posts: 18,898 |
Quote
> I rebooted back into my working Debian install,
> but this time I had both the USB stick and HDD
> plugged in. If I check the kernel dmesg, I see
> this interesting set of entries about my disks. I
> wonder why this drive is being detected as using
> 512-byte sectors?
Quote
> [ 47.836848] sdb: unknown partition table