microSD 128GB 메모리 카드가 FAT32 로 포맷이 되어있는데 리눅스에 잘 인식하는가 싶어서 USB 리더기에 끼우고 마운트 한번 해봤습니다.

 

# fdisk -l
...
Disk /dev/sda: 128.0 GB, 128043712512 bytes, 250085376 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x8a03e6d6

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1           32768   250085375   125026304    c  W95 FAT32 (LBA)

/dev/sda1 이고 W95 FAT32 (LBA) 로 표시되네요~

 

[root@localhost ~]# mount -t vfat /dev/sda1 /mnt/usb
[root@localhost ~]# ls -l /mnt/usb
total 4
drwxr-xr-x 2 root root 4096 Mar 25 19:49 System Volume Information
[root@localhost ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/root        14G   13G  961M  93% /
devtmpfs        459M     0  459M   0% /dev
tmpfs           464M     0  464M   0% /dev/shm
tmpfs           464M   18M  446M   4% /run
tmpfs           464M     0  464M   0% /sys/fs/cgroup
/dev/mmcblk0p1  667M   60M  607M   9% /boot
tmpfs            93M     0   93M   0% /run/user/0
/dev/sda1       120G   12K  120G   1% /mnt/usb

마운트 잘 되네요~

 

백업용으로 사용하면 될 것 같습니다~

 

블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,

CentOS 하드디스크 추가시 마운트하기



기존 하드디스크 이외에 하나더 추가할 경우 포맷하고 마운트를 하여야 합니다.


먼저 fdisk -l 로 Disk 정보를 확인합니다.


[root@vps ~]# fdisk -l


Disk /dev/sda: 1000.2 GB, 1000204886016 bytes

...


Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes

255 heads, 63 sectors/track, 121601 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 4096 bytes

I/O size (minimum/optimal): 4096 bytes / 4096 bytes

Disk identifier: 0x00000000


/dev/sdb 로 확인되었습니다.


이제 파티션을 잡아야 합니다.


[root@vps ~]# fdisk /dev/sdb

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel with disk identifier 0xbf2eadcc.

Changes will remain in memory only, until you decide to write them.

After that, of course, the previous content won't be recoverable.


Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)


The device presents a logical sector size that is smaller than

the physical sector size. Aligning to a physical sector (or optimal

I/O) size boundary is recommended, or performance may be impacted.


WARNING: DOS-compatible mode is deprecated. It's strongly recommended to

         switch off the mode (command 'c') and change display units to

         sectors (command 'u').


Command (m for help): n

Command action

   e   extended

   p   primary partition (1-4)

p

Partition number (1-4): 1

First cylinder (1-121601, default 1):

Using default value 1

Last cylinder, +cylinders or +size{K,M,G} (1-121601, default 121601):

Using default value 121601


Command (m for help): w

The partition table has been altered!


Calling ioctl() to re-read partition table.

Syncing disks.


굵은파란색을 보시면 됩니다.


파티션을 잡은 뒤에는 포맷을 합니다.


[root@vps ~]# mkfs.ext4 /dev/sdb1

mke2fs 1.41.12 (17-May-2010)

/dev/sdb1 alignment is offset by 512 bytes.

This may result in very poor performance, (re)-partitioning suggested.

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=1 blocks, Stripe width=0 blocks

61054976 inodes, 244190000 blocks

12209500 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=4294967296

7453 block groups

32768 blocks per group, 32768 fragments per group

8192 inodes per group

Superblock backups stored on blocks:

        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,

        4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,

        102400000, 214990848


Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done


This filesystem will be automatically checked every 30 mounts or

180 days, whichever comes first.  Use tune2fs -c or -i to override.


시간이 조금 걸립니다.


이제 마운트를 하면 됩니다.


uuid 로 마운트를 해볼까요~


[root@vps ~]# blkid /dev/sdb1

/dev/sdb1: UUID="5a76eec0-4b80-d3c4-9de4-302bffcc898c" TYPE="ext4"


UUID 를 복사해서 /etc/fstab 에 아래 처럼 추가합니다.


UUID=5a76eec0-4b80-d3c4-9de4-302bffcc898c /hdd2 ext4 defaults 1 1


/hdd2 는 미리 만들어 주어야 합니다. (mkdir /hdd2)


# mount -a 로 마운트 하면 됩니다.


# df -h 로 제대로 마운트 되었는지 확인합니다.


'LINUX' 카테고리의 다른 글

CentOS 6.x NGINX configtest  (0) 2018.06.01
리눅스 하드디스크 정보보기  (0) 2018.05.29
리눅스 RSYNC 특정 폴더 제외하기  (0) 2018.05.28
CentOS yum install 메모리 에러  (0) 2018.05.25
htaccess 특정IP만 허용하기  (0) 2018.04.12
블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,

XenServer ISO 이미지 마운트 하기



XenCenter 프로그램에서는 쉽게 커스텀이미지를 마운트하는 기능이 없네요~


우선 윈도우 iso 이미지 파일을 젠서버로 업로드를 하여야 합니다.


젠서버 설치가 끝나고 나면 ssh 로 접속을 할 수가 있습니다.


wget 으로 다운로드 받거나 ftp 로 다운로드를 하면 됩니다.



# xe sr-create name-label="Local ISO" type=iso device-config:location=/root/ device-config:legacy_mode=true content-type=iso


device-config:location= 에 iso 이미지가 있는 폴더명을 적어주면 됩니다.


XenServer ISO 이미지 마운트 하기


XenCenter 에서 iso 이미지가 마운트 된 것을 바로 확인이 가능합니다.



XenCenter ISO 윈도우 설치


이제 New VM 을 눌러서 윈도우를 설치할 수 있습니다.



XenCenter ISO 윈도우 설치


조금전에 마운트한 iso 파일을 선택하면 됩니다.



블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,

리눅스 ISO-13346 UDF 이미지 마운트하기



리눅스에서 ISO Image 마운트 하는 방법입니다.



# mount -t iso9660 -o loop /root/Win_x64_dvd.iso /mnt/win7

mount: /dev/loop1 is write-protected, mounting read-only

[root@vps mnt]# ls -l win7/

total 1

-r-xr-xr-x 1 root root 135 Nov 21  2010 readme.txt

[root@vps mnt]# cd win7/

[root@vps win7]# ll

total 1

-r-xr-xr-x 1 root root 135 Nov 21  2010 readme.txt

[root@vps win7]# cat readme.txt

This disc contains a "UDF" file system and requires an operating system

that supports the ISO-13346 "UDF" file system specification.


기존 방법으로는 마운트가 안되는군요~


아래 처럼 마운트를 시도합니다.


# mount -t udf /root/Win_x64_dvd.iso /mnt/win7

mount: /dev/loop1 is write-protected, mounting read-only


이제 정상적으로 마운트가 되었습니다.


블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,