Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize automatic mounting of hard disk on CentOS6.5

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to automatically mount the hard disk on CentOS6.5". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1. Mount the disk manually

View the disk partition information and execute the fdisk command

[root@tsp-rls-webservice tsp] # fdisk-l

Disk / dev/sdb: 1476.5 GB, 1476529225728 bytes

255 heads, 63 sectors/track, 179511 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

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

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x0008a3a1

Device Boot Start End Blocks Id System

/ dev/sdb1 1 179512 1441922048 83 Linux

Disk / dev/sda: 322.1 GB, 322122547200 bytes

255 heads, 63 sectors/track, 39162 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

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

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x6a5b51c5

Device Boot Start End Blocks Id System

/ dev/sda1 * 1 64 512000 83 Linux

Partition 1 does not end on cylinder boundary.

/ dev/sda2 64 39163 314059776 8e Linux LVM

Disk / dev/mapper/vg_tsprlswebserv-lv_root: 53.7 GB, 53687091200 bytes

255 heads, 63 sectors/track, 6527 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

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

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk / dev/mapper/vg_tsprlswebserv-lv_swap: 16.8 GB, 16814964736 bytes

255 heads, 63 sectors/track, 2044 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

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

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk / dev/mapper/vg_tsprlswebserv-lv_home: 251.1 GB, 251092008960 bytes

255 heads, 63 sectors/track, 30526 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

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

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Check to see that / dev/sdb1 is not mounted, then set up a mount point (create a mount directory), execute the mount command, and mount the data disk.

[root@tsp-rls-webservice tsp] # mkdir / tsp

[root@tsp-rls-webservice tsp] # mount / dev/sdb1 / tsp

2. The system starts and the data disk is mounted automatically.

View disk UUID information

[root@tsp-rls-webservice tsp] # blkid

/ dev/mapper/vg_tsprlswebserv-lv_root: UUID= "3dedb8a7-69c5-44d7-b590-e70a0b1b3c9a" TYPE= "ext4"

Dev/sdb1: UUID= "e85dd659-bb20-4d12-a8bc-16130efc04ea" TYPE= "ext4"

/ dev/sda1: UUID= "97f12da1-c972-4508-9028-9b98cde34a34" TYPE= "ext4"

/ dev/sda2: UUID= "cKJ1xc-8mci-0d89-DNaR-5IAG-2JOv-V1G1q9" TYPE= "LVM2_member"

/ dev/mapper/vg_tsprlswebserv-lv_swap: UUID= "aa4589df-1d47-4060-a419-9c4432c3bb9a" TYPE= "swap"

Dev/mapper/vg_tsprlswebserv-lv_home: UUID= "17a62039-4676-45ce-8eb9-1914e2d4820c" TYPE= "ext4"

Edit system partition table

[root@tsp-rls-webservice tsp] # vi / etc/fstab

Add the following information:

UUID=e85dd659-bb20-4d12-a8bc-16130efc04ea / tsp ext4 defaults 12

The edited information is as follows:

#

# / etc/fstab

# Created by anaconda on Thu Aug 21 17:17:19 2014

#

# Accessible filesystems, by reference, are maintained under'/ dev/disk'

# See man pages fstab (5), findfs (8), mount (8) and/or blkid (8) for more info

#

/ dev/mapper/vg_tsprlswebserv-lv_root / ext4 defaults 1 1

UUID=97f12da1-c972-4508-9028-9b98cde34a34 / boot ext4 defaults 12

UUID=e85dd659-bb20-4d12-a8bc-16130efc04ea / tsp ext4 defaults 12

/ dev/mapper/vg_tsprlswebserv-lv_home / home ext4 defaults 1 2

/ dev/mapper/vg_tsprlswebserv-lv_swap swap swap defaults 0 0

Tmpfs / dev/shm tmpfs defaults 0 0

Devpts / dev/pts devpts gid=5,mode=620 0 0

Sysfs / sys sysfs defaults 0 0

Proc / proc proc defaults 0 0

Save and exit; restart the system and confirm that the automatic mount is successful.

This is the end of the content of "how to automatically mount the hard disk on CentOS6.5". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report