Linux에서 독립 실행형 플레이어용 DVD 굽기

Linux에서 독립 실행형 플레이어용 DVD 굽기

명령줄에서 Linux의 독립 실행형 플레이어용 DVD+R을 굽고 싶습니다.

누군가 나를 도와주세요.

답변1

빈 CD에 쓰려면 아래 명령을 사용해 보십시오.

sudo wodim dev=/dev/scd0 공백=디스크

도움이 되었기를 바랍니다.

답변2

CD/DVD 굽기에 관한 Ubuntu의 도움말 페이지는 다음과 같습니다.

https://help.ubuntu.com/community/CdDvd/Burning

주요 내용은 다음과 같습니다:

명령줄 도구를 사용하여 CD 또는 DVD 굽기

이 섹션에서는 CD 또는 DVD 디스크를 굽기 위한 명령줄(터미널) 사용에 대해 자세히 설명합니다.

ISO 이미지 생성

mkisofs라는 명령을 사용하면 .ISO 이미지를 굽거나 마운트할 수 있습니다.

genisoimage -r -J -o cd_image.iso /directory

-r 및 -J는 긴 파일 이름이 Unix(Rock Ridge 사용) 및 Windows(Joliet 확장자 사용)에서 각각 작동하도록 보장합니다.

굽기 전에 CD 이미지 확인하기

굽기 전에 CD 이미지를 확인할 수 있습니다. 가장 쉬운 방법은 파일 브라우저에서 해당 이미지를 두 번 클릭하는 것입니다. 그러면 아카이브 관리자로 이미지가 표시됩니다.

sudo 액세스 권한이 있으면 이미지를 마운트하고 해당 콘텐츠를 탐색할 수도 있습니다.

sudo modprobe loop
sudo mount -t iso9660 -o ro,loop=/dev/loop0 cd_image.iso /media/cdrom

다음 사항을 확인한 후 이미지를 마운트 해제해야 합니다.

sudo umount /media/cdrom

wodim을 사용하여 명령줄에서 CD 굽기

cdrecord는 ISO(.iso) 디스크 이미지나 기타 데이터를 CD에 구울 수 있습니다. 데이터 CD를 굽는 방법(이전에 준비한 이미지 사용):

먼저 CDROM/DVDROM이 어디에 있는지 확인하세요. 이 같은

$ wodim --devices
wodim: Overview of accessible drives (1 found) :
-------------------------------------------------------------------------
 0  dev='/dev/scd0'     rwrw-- : 'LITE-ON' 'DVDRW SOHW-1633S'
-------------------------------------------------------------------------

정보를 찾은 후. 장치 검색에서 적절한 대상을 가져옵니다. 이는 시스템에 둘 이상의 장치가 있는 경우 중요합니다.

내 경우에는 /dev/cdrw와 /dev/dvdrw가 모두 /dev/scd0을 가리킵니다.

$ ls -l /dev/cdrw
lrwxrwxrwx 1 root root 4 2009-01-26 21:56 /dev/cdrw -> scd0

$ ls -l /dev/dvdrw
lrwxrwxrwx 1 root root 4 2009-01-26 21:56 /dev/dvdrw -> scd0

따라서 다음 표기법을 사용할 수 있습니다.

wodim dev=/dev/cdrw -v -data cd_image.iso

wav 파일에서 오디오 CD를 굽는 방법:

wodim dev=/dev/cdrw -v -audio [wav files...]

CD-Writer가 아닌 경우 필요에 따라 /dev/cdrw를 바꾸십시오.

-v(상세)를 사용하면 녹음 진행 상황을 추적할 수 있습니다.


[우분투 도움말 끝]

man wodim다음은 매뉴얼(설명서) 페이지 에서 발췌한 약간의 다중 세션입니다 .wodim

   -multi Allow multi session CDs to  be  made.  This  flag  needs  to  be
          present on all sessions of a multi session disk, except you want
          to create a session that will be the last session on the  media.
          The  fixation  will  be  done  in  a way that allows the CD/DVD-
          Recorder to append additional sessions later. This  is  done  by
          generation  a  TOC  with a link to the next program area. The so
          generated media is  not  100%  compatible  to  manufactured  CDs
          (except  for  CDplus).   Use only for recording of multi session
          CDs.  If this option is present, the default track type  is  CD-
          ROM  XA mode 2 form 1 and the sector size is 2048 bytes.  The XA
          sector subheaders will be created by the drive.  The Sony drives
          have  no hardware support for CD-ROM XA mode 2 form 1.  You have
          to specify the -data option in order  to  create  multi  session
          disks  on  these drives.  As long as wodim does not have a coder
          for converting data sectors to audio sectors, you need to  force
          CD-ROM  sectors  by  including  the  -data option if you like to
          record a multisession disk in SAO mode.  Not  all  drives  allow
          multisession CDs in SAO mode.

관련 정보