とは言え,仕事で使うということで,購入して経費処理も終わらせてしまいましたので,何とか使い道を見付けないといけません.USBの扇風機で常に冷やしながら使えば使えるのは分かったのですが,さすがにこれで常用はできない.で,色々検索してみると Raspberry pi だと安定して使えている記述が結構ある.例えば,
[353222.507417] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[353222.512628] sd 0:0:0:0: Attached scsi generic sg0 type 0
[353222.523665] sda: sda1
[353222.526010] sd 0:0:0:0: [sda] Attached SCSI removable disk
$ dmesg
....
[353221.401970] usb 1-1.4: new high-speed USB device number 4 using dwc_otg
[353221.503328] usb 1-1.4: New USB device found, idVendor=0781, idProduct=5583
[353221.503350] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[353221.503363] usb 1-1.4: Product: Ultra Fit
[353221.503375] usb 1-1.4: Manufacturer: SanDisk
[353221.503388] usb 1-1.4: SerialNumber: 4C530001050713113272
[353221.504356] usb-storage 1-1.4:1.0: USB Mass Storage device detected
[353221.507141] scsi host0: usb-storage 1-1.4:1.0
[353222.503462] scsi 0:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6
[353222.505052] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)
[353222.506860] sd 0:0:0:0: [sda] Write Protect is off
[353222.506886] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
[353222.507417] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[353222.512628] sd 0:0:0:0: Attached scsi generic sg0 type 0
[353222.523665] sda: sda1
[353222.526010] sd 0:0:0:0: [sda] Attached SCSI removable disk
$ dmesg
....
[353221.401970] usb 1-1.4: new high-speed USB device number 4 using dwc_otg
[353221.503328] usb 1-1.4: New USB device found, idVendor=0781, idProduct=5583
[353221.503350] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[353221.503363] usb 1-1.4: Product: Ultra Fit
[353221.503375] usb 1-1.4: Manufacturer: SanDisk
[353221.503388] usb 1-1.4: SerialNumber: 4C530001050713113272
[353221.504356] usb-storage 1-1.4:1.0: USB Mass Storage device detected
[353221.507141] scsi host0: usb-storage 1-1.4:1.0
[353222.503462] scsi 0:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6
[353222.505052] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)
[353222.506860] sd 0:0:0:0: [sda] Write Protect is off
[353222.506886] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
[353222.507417] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[353222.512628] sd 0:0:0:0: Attached scsi generic sg0 type 0
[353222.523665] sda: sda1
[353222.526010] sd 0:0:0:0: [sda] Attached SCSI removable disk
で,次にパーティションの作成です.汎用性を持たせないためにあえて Linux を選びました.
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ sudo fdisk /dev/sda
Welcome to fdisk(util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command(m for help): n
Partition type
p primary(0 primary, 0 extended, 4 free)
e extended(container for logical partitions)
Select(default p): p
Partition number(1-4, default 1): 1
First sector(2048-242614271, default 2048):
Last sector, +sectors or +size{K,M,G,T,P}(2048-242614271, default 242614271):
Created a new partition 1of type 'Linux' and of size 115.7 GiB.
Command(m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
$ sudo fdisk /dev/sda
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): n
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-242614271, default 2048):
Last sector, +sectors or +size{K,M,G,T,P} (2048-242614271, default 242614271):
Created a new partition 1 of type 'Linux' and of size 115.7 GiB.
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
$ sudo fdisk /dev/sda
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): n
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-242614271, default 2048):
Last sector, +sectors or +size{K,M,G,T,P} (2048-242614271, default 242614271):
Created a new partition 1 of type 'Linux' and of size 115.7 GiB.
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.