使用linux訪問hd img檔案

2021-05-22 11:38:18 字數 1235 閱讀 6986

#!/bin/bash

#key words:linux0.11 bochs harddisk bash

#mount hdimg name:hdimage-devel

#mount point:/mnt/initrd

hdimg=hdimage-devel

mpoint=/mnt/initrd

if [ "$1" == "mount" ]

then

#mount hdimg

echo "$1 start"

sudo losetup /dev/loop1 "$hdimg" && /

sudo fdisk /dev/loop1 && /

sudo losetup -d /dev/loop1 && /

#command (m for help): x

#expert command (m for help): p

#disk /dev/loop1: 16 heads, 38 sectors, 410 cylinders

#nr af  hd sec  cyl  hd sec  cyl     start      size id

# 1 00   0   3    0  15  38  203          2     124030 81

# 2 00   0   1  204  15  38  407     124032     124032 81

# 3 00   0   0    0   0   0    0          0          0 00

# 4 00   0   0    0   0   0    0          0          0 00

#2*512

sudo losetup -o 1024 /dev/loop1

$hdimg

&& /

sudo mount -t minix /dev/loop1 "$mpoint"

echo "$1 end"

elif [ "$1" == "umount" ]

then

#umount hdimg

echo "$1 start"

sudo umount /dev/loop1 && /

sudo losetup -d /dev/loop1

echo "$1 end"

else

echo "usage ./hd.sh [mount|umount]"fi

linux訪問區域網windows共享資料夾

背景 我的centos 7是伺服器a,客戶使用網頁方式訪問他。這伺服器a跟伺服器b window系統 是乙個區域網的。伺服器b使用共享資料夾的方式共享了他獲取到的檔案。現在,要讓客戶在網頁上面看到伺服器b的檔案。我使用的是php apache架構。使用的是centos 7 如果是root許可權就直接...

Linux 建立sftp使用者登入,訪問指定資料夾

1.建立使用者,使用者名為sentweb useradd d home www sentweb.zhdingli.com s sbin nologin m sentweb 2.設定密碼 passwd sentweb 輸入密碼 3.使用者授權。4.修改配置,限制訪問路徑 vim etc ssh ssh...

LINUX學習筆記9 檔案訪問

a 建立檔案 int creat const char filename,mode t mode 1.filename 要建立的檔名 2.include include include 3.mode 建立模式 只能控制建立使用者的寫屬性,其餘使用者都是不可寫,所以一般是755 a s irusr 可...