さて USB の /dev/sdb5 まあ sdb sdc sda ... とかに 変わる場合がありますが
# fdisk -l ... Disk /dev/sdb: 7746 MB, 7746879488 bytes, 15130624 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk label type: dos Disk identifier: 0x000d81aa Device Boot Start End Blocks Id System /dev/sdb1 62 207947 103943 83 Linux /dev/sdb2 * 207948 1438709 615381 16 Hidden FAT16 /dev/sdb3 * 1438710 1646657 103974 c W95 FAT32 (LBA) /dev/sdb4 1646658 15129425 6741384 5 Extended /dev/sdb5 1646720 13431989 5892635 83 Linux /dev/sdb6 13432052 15129425 848687 83 Linux
今回の場合は sdb5 が rootimg.squash を 入れ換える 領域になります。
今回は もう init 等の変更処理は 済んでいるので rootimg.squash のみの対応となります。
sdb5 の 処理の参考を ここに置いてあります。
# mount /dev/sdb5 /mnt/ # df Filesystem 1K-blocks Used Available Use% Mounted on ... /dev/sdb5 5800048 3826092 1679328 70% /mnt # ls /mnt/isolinux/ 001_System.map boot.cat plamo51.lss 001_System.map-3.12.5-plamoSMP config rootimg.squash 001_vmlinuz config-3.12.5-plamoSMP sample.msg 001_vmlinuz-3.12.5-plamoSMP initrd.gz syslinux.cfg System.map isolinux.bin vmlinuz System.map-3.12.5-plamoSMP isolinux.cfg vmlinuz-3.12.5-plamoSMP # rm /mnt/isolinux/rootimg.squash # df Filesystem 1K-blocks Used Available Use% Mounted on ... /dev/sdb5 5800048 160384 5345036 3% /mnt # time cp -av rootimg.squash /mnt/isolinux/ # time cp -av rootimg.squash /mnt/isolinux/ 'rootimg.squash' -> '/mnt/isolinux/rootimg.squash' real 14m56.553s user 0m0.000s sys 0m9.507s # df Filesystem 1K-blocks Used Available Use% Mounted on ... /dev/sdb5 5800048 3830792 1674628 70% /mnt # ls /mnt/ P_Plamo_backup_cpio.gz isolinux/ lost+found/ # ls /mnt/isolinux/ 001_System.map boot.cat plamo51.lss 001_System.map-3.12.5-plamoSMP config rootimg.squash 001_vmlinuz config-3.12.5-plamoSMP sample.msg 001_vmlinuz-3.12.5-plamoSMP initrd.gz syslinux.cfg System.map isolinux.bin vmlinuz System.map-3.12.5-plamoSMP isolinux.cfg vmlinuz-3.12.5-plamoSMP # umount /mnt/
動かして見ましょう。
$ ssh -l xxxx 987.654.32.10 The authenticity of host '987.654.32.10 (987.654.32.10)' can't be established. RSA key fingerprint is 58:af:32:17:a8:d9:14:57:b3:31:e4:61:31:34:a0:3a. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '987.654.32.10' (RSA) to the list of known hosts. Password: $ su - パスワード: su: 認証失敗 /* root の パスワード の 設定もれ オリジナル を 使用 *//* http://gihyo.jp/lifestyle/serial/01/ganshiki-soushi/0011。 */ /* P-Plamoではrootのパスワードはpasswordにしています。 */# passwd Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully # df Filesystem 1K-blocks Used Available Use% Mounted on /dev/loop0 3666944 3666944 0 100% / /dev/root 5371 2433 2631 49% /loop /dev/sdb5 5800048 3830792 1674628 70% /loop/cdrom none 1616304 20152 1596152 2% /tmp none 1616304 20152 1596152 2% /var none 1616304 20152 1596152 2% /bin none 1616304 20152 1596152 2% /etc none 1616304 20152 1596152 2% /lib none 1616304 20152 1596152 2% /run none 1616304 20152 1596152 2% /usr none 1616304 20152 1596152 2% /boot none 1616304 20152 1596152 2% /home none 1616304 20152 1596152 2% /sbin none 1616304 20152 1596152 2% /root none 1616304 20152 1596152 2% /opt none 1616304 20152 1596152 2% /srv none 1616304 20152 1596152 2% /misc none 1616304 20152 1596152 2% /net none 1616304 20152 1596152 2% /install tmpfs 1616304 68 1616236 1% /dev /media 1616304 0 1616304 0% /media cgroup 1616304 0 1616304 0% /sys/fs/cgroup
これで なんとか かんとか動きます。
にゃんたろう 拝!
2014年 2月 15日 土曜日 21:11:29 JST 作成