web-dev-qa-db-ja.com

diskutilの名前変更エラー:「ファイルシステムの有効なボリューム名ではないようです」

次のコマンドを使用して、マウントされたISOイメージのボリューム名を変更しようとしています。

diskutil rename /dev/disk15  TEST_DISK_2014_RENAMED

エラーが発生します:

TEST_DISK_2014_RENAMED does not appear to be a valid volume name for its file system

これをSudoで実行してみたところ、同じ結果になりました。

$ diskutil info /dev/disk15

Device Identifier:        disk15
Device Node:              /dev/disk15
Part of Whole:            disk15
Device / Media Name:      Apple read/write Media

Volume Name:              TEST_DISK_2014
Escaped with Unicode:     TEST_DISK_2014

Mounted:                  Yes
Mount Point:              /Volumes/TEST_DISK_2014
Escaped with Unicode:     /Volumes/TEST_DISK_2014

File System Personality:  UDF
Type (Bundle):            udf
Name (User Visible):      Universal Disk Format (UDF)

Content (IOContent):      None
OS Can Be Installed:      No
Media Type:               Generic
Protocol:                 Disk Image
SMART Status:             Not Supported

Total Size:               84.0 MB (83996672 Bytes) (exactly 164056 512-Byte-Blocks)
Volume Free Space:        0 B (0 Bytes) (exactly 0 512-Byte-Blocks)
Device Block Size:        512 Bytes

Read-Only Media:          No
Read-Only Volume:         Yes
Ejectable:                Yes

Whole:                    Yes
Internal:                 No
OS 9 Drivers:             No
Low Level Format:         Not supported

$ bash --version

GNU bash, version 4.3.27(1)-release (x86_64-Apple-darwin12.5.0)

バリエーション:

diskutil rename TEST_DISK_2014  TEST_DISK_2014_RENAMED
diskutil rename /Volumes/TEST_DISK_2014  TEST_DISK_2014_RENAMED
diskutil rename /Volumes/TEST_DISK_2014  /Volumes/TEST_DISK_2014_RENAMED
/Volumes/diskutil rename TEST_DISK_2014  "TEST_DISK_2014_RENAMED"
diskutil rename TEST_DISK_2014  'TEST_DISK_2014_RENAMED'
diskutil rename 'TEST_DISK_2014'  'TEST_DISK_2014_RENAMED'
diskutil rename "TEST_DISK_2014"  "TEST_DISK_2014_RENAMED"

何も機能しません。

それで、話は何ですか?適切な構文は何ですか?他の例は見つかりませんでした。

6
hmj6jmh

私はこのブログ投稿で解決策を見つけました: http://rexstjohn.com/fixing-does-not-appear-to-be-a-valid-volume-name-for-its-file-system/

OS Xでターミナルを使用してボリュームを再フォーマットしようとしていて、「エラー:ファイルシステムの有効なボリューム名ではないようです」と表示される場合–名前のすべての文字の名前を大文字にする必要がありますこのように指定しようとしています:

diskutil partitionDisk /dev/disk2 1 MBRFormat "MS-DOS FAT32" EDISON 805.30M`
9
lars_bx