38

I'm on Mac OS X, have a DVD in the DVD-drive and can look at it in the Finder. I'd like to try to create an iso of it by using the dd command. But to do that I need to know what device to use as an input. How can I find what device my DVD-drive is?

Cfinley
  • 1,435
Svish
  • 41,258

7 Answers7

41

Put a disk into the drive, wait until OS X mounts it, and then type the following command in the Terminal:

$ mount
[⋮]
/dev/disk2 on /Volumes/MyDisk (cd9660, local, nodev, nosuid, read-only, noowners)

In my case, the drive is located at /dev/disk2.

You can use drutil as well.

# drutil status
 Vendor   Product           Rev 
 MATSHITA DVD-R   UJ-857D   KBVB

           Type: DVD+RW               Name: /dev/disk2
[⋮]
viam0Zah
  • 2,086
11

Finally found a way. Not sure if it is the best, but it works anyways:

df -h

c",)

Svish
  • 41,258
4

Start Utilites, Disk Util. Click the drive or partition on the left, then the blue i/info icon in the toolbar. The disk identifier is the name to be used after /dev/

Nicholaz
  • 1,755
3

Just embodied the diskutil incantation and awk in a script to recite CD device names:

May be handy for future reuse; I'm about to use it in my CD ripping kit.

Code:

#!/bin/sh
#
# Scan the output of diskutil and report the CD devices.
#   - Cameron Simpson <cs@zip.com.au> 31mar2016
#

set -ue

diskutil list \
| awk '/^\// { device=$1 }
       $1 == "0:" && $2 == "CD_partition_scheme" { print device }
      '

Source code: https://bitbucket.org/cameron_simpson/css/src/tip/bin/osx-cd-device

kenorb
  • 26,615
2

You can find the path of a disk using a built-in tool on macOS.

  1. Go into Disk Utility.
  2. Select your drive by its name, such as DUAL BOOT in my case.
  3. Open the info panel by its shortcut, right-clicking the disk in the list, or as the picture shows.

Info button

  1. Locate the row named 'BSD device node'.

'Get Info' with /dev/ info

The path will be /dev/disk2s1, based on the value of that row.

2

thankfully, OS X has several options. in System Profiler, choose Serial-ATA, then in the device tree frame choose your device. it shows up as BSD Name.

df is fine but it displays with the partition (volume mounted as) info, rather than the device itself. e.g. a drive shows up as /dev/disk0s2 where the device itself is disk0; s2 is the volume mounted on / ..for most applications this is usable

diskutil list displays all devices and partitions

Moda
  • 146
1

You can check for devices which have no free space on them (will be the case with burned CDs / DVDs):

df -h | grep Volumes | grep "100%" | rev | cut -d '/' -f1 | rev
adam
  • 11