pc98_disks_in_linux

(★ 22)

Notes relating to using PC9801/9821 (and possibly other retro PC system) disks in Linux

파일 탐색기

  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

umount

설명 보기 ▼

마운트 지점에서 파일 시스템이 링크를 해제하여 더 이상 접근할 수 없게 만들어 줍니다.
파일 시스템이 사용중이면 마운트 해제할 수 없습니다.
더 많은 정보: <https://man.openbsd.org/umount>.

umount {{path/to/device_file}}

마운트된 소스의 경로를 전달하여, 파일 시스템을 마운트 해제:

sudo umount {{path/to/device_file}}

파일 시스템을 마운트된 원본 경로를 통해 마운트 해제:

umount {{path/to/mounted_directory}}

파일 시스템이 마운트된 대상에 대한 경로를 전달하여 파일 시스템 마운트 해제:

🔍

mount

설명 보기 ▼

호스트의 디렉터리/드라이브/이미지를 가상 DOS 드라이브로 마운트하는 명령어.
더 많은 정보: <https://www.dosbox.com/wiki/MOUNT>.

MOUNT C .

현재 디렉터리를 C 드라이브로 마운트:

MOUNT C {{C:\path\to\directory}}

특정 디렉터리를 C 드라이브로 마운트:

MOUNT C {{C:\path\to\directory}} -freesize {{1024}}

사용 가능한 공간의 제한 설정 (MB 단위로):

🔍

losetup

설명 보기 ▼

Set up and control loop devices.

losetup {{[-a|--all]}}

List loop devices with detailed info:

sudo losetup {{/dev/loop}} /{{path/to/file}}

Attach a file to a given loop device:

sudo losetup --show {{[-P|--partscan]}} {{[-f|--find]}} /{{path/to/file}}

Attach a file to a new free loop device and scan the device for partitions:

🔍

lsblk

설명 보기 ▼

List information about devices.

lsblk

List all storage devices in a tree-like format:

lsblk {{[-a|--all]}}

Also list empty devices:

lsblk {{[-b|--bytes]}}

Print the SIZE column in bytes rather than in a human-readable format:

🔍

udisksctl

설명 보기 ▼

`udisksd`와 상호 작용하여 스토리지 장치를 조회하고 조작.
관련 항목: `mount`.
더 많은 정보: <https://storaged.org/doc/udisks2-api/latest/udisksctl.1.html>.

udisksctl status

디스크 드라이브 및 블록 장치에 대한 상위 정보 표시:

udisksctl info {{[-b|--block-device]}} {{/dev/sdX}}

장치에 대한 자세한 정보 표시:

udisksctl info {{[-b|--block-device]}} {{/dev/sdXN}}

장치 파티션에 대한 자세한 정보 표시:

// repository documentation