![nemo 작업을 사용하여 iso 파일을 마운트하는 방법은 무엇입니까?](https://linux55.com/image/50048/nemo%20%EC%9E%91%EC%97%85%EC%9D%84%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20iso%20%ED%8C%8C%EC%9D%BC%EC%9D%84%20%EB%A7%88%EC%9A%B4%ED%8A%B8%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
나는 다음 기사를 읽었습니다.
https://wiki.archlinux.org/index.php/Nemo
https://wiki.archlinux.org/index.php/Mounting_images_as_user
Nemo Actions
마운트 파일을 사용해 보았지만 iso
컨텍스트 메뉴 옵션을 클릭해도 아무 일도 일어나지 않습니다.
내 단계:
sudo pacman -S fuseiso
내장
nemo-actions-iso-mount.sh
/usr/bin/
#!/bin/bash FILE=$(basename "$1") MOUNTPOINT="$HOME/Desktop/$FILE" fuseiso -p "$1" "$MOUNTPOINT"
sudo chmod a+x /usr/bin/nemo-actions-iso-mount.sh
mountiso.nemo_action
다음에서 스크립트를 작성하세요.$HOME/.local/share/nemo/actions/
[Nemo Action] Name=Mount Image File: %N Comment=Create an folder in ~/Desktop with the name of the image file Exec=/usr/bin/nemo-actions-iso-mount.sh %N Selection=S Extensions=iso;nrg;bin;img;mdf; Mimetypes=*/*
답변1
좋습니다. 이유를 찾았습니다. 해당 필드는 Exec
매개변수를 지원하지 않으므로 %N
대신 사용해야 합니다 %F
.