`mount -o loop, rw, offset = X`를 수행하는 Windows 방법은 무엇입니까?


4

나는 마운트 할 에 폴더. 매개 변수는 여기에 열쇠이다 - 나는 편집 할 필요가 내부 (설정 와이파이 로그인 \ 암호를) 다시 저장합니다. Windows 10에서 rw로 마운트하는 방법?-o loopoffset=70254080./raspbian-jessie-lite.img./mntptrw.iso


Windows의 Bash는 권장하는 동안 루프백 장치를 찾을 수 없음 오류를 표시합니다.

panda@host:~$ sudo /sbin/modprobe loop.o
modprobe: ERROR: ../libkmod/libkmod.c:556 kmod_search_moddep() could not open moddep file '/lib/modules/3.4.0+/modules.dep.bin'

그래서 Windows 10에서 이러한 루프백 마운트 작업을 수행 할 수있는 무료 또는 오픈 소스 또는 쉐어웨어 소프트웨어는 무엇입니까?

답변:


1

아래의 powershell 스크립트는 .iso를 가져 와서 디렉토리에 마운트합니다. 나는 그것이 .img에서도 작동한다고 가정하지만 그것이 글을 받아 들일지 확신 할 수 없다.

예를 들어 $img_pathD:\my_stuff\mount_me.iso는에 마운트 지점을 만듭니다.D:\my_stuff\mount_me\

이 명령 $drive.AddMountPoint 에는 관리자 권한이 필요합니다.

param([Parameter(Mandatory=$true, Position=1)] [string] $img_path)

##
# https://social.technet.microsoft.com/Forums/scriptcenter/en-US/d2faa6c3-35e8-4bad-8ac8-24902bbb6f1a/what-is-the-point-of-nodriveletter-in-mountdiskimage
##

$ErrorActionPreference = "Stop"

$mount_dir_path = Join-Path `
    ([System.IO.Path]::GetDirectoryName($img_path)) `
    ([System.IO.Path]::GetFileNameWithoutExtension($img_path))

if(-Not (Test-Path -Path $mount_dir_path -PathType "Container")) {
    $null = mkdir $mount_dir_path
}

$img = Mount-DiskImage -ImagePath $img_path -NoDriveLetter -PassThru
$vol = Get-Volume -DiskImage $img
$drive = Get-WmiObject "win32_volume" -Filter "Label = '$($vol.FileSystemLabel)'"
$mount_return = $drive.AddMountPoint($mount_dir_path)

if($mount_return.ReturnValue -ne 0) {
    # https://msdn.microsoft.com/en-us/library/aa384762(v=vs.85).aspx
    throw $mount_return
}

##

0

Windows-10 전문가는 아니지만 bash를 사용할 수 있다고해서 GNU / 리눅스 툴체인 전체를 사용할 수 있다고 생각하지는 않습니다.

내가 아는 한, Windows에 루프 장치가 없습니다. 또한 modprobe (이것은 Linux 커널에 고유합니다) 및 아마도 마운트하지 않을 것입니다 (이번에는 일부 파일 시스템에 해당)


1
OP가 WSL (Windows Subsystem for Linux)을 사용하여 실행 한 것 같습니다 bash. WSL은 수정되지 않은 실제 Linux EFI 바이너리를 실행하지만 실제 Linux 커널에서 실행하는 것이 아니라 Linux-NT 호환성 계층에서 실행합니다 (사실, 기본적으로와 반대입니다 wine. Win32 바이너리는 Win32- 리눅스 호환 호환성 레이어). WSL은 드라이버를 포함한 커널 모듈 로딩을 지원하지 않습니다.
CBHacking
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.