Create new mount point(/backup) from existing partition

Ram

i have 2 partition on cenos 6.4 in SOFT RAID 1.

my current mounted partitions(df -h):

Filesystem            Size  Used Avail Use% Mountedon
/dev/md1               20G  5.4G   14G  29% /
/dev/md2              897G  680M  851G   1% /home

How to mount /backup in /dev/md2 ? or

How to create new mount point for /backup?

mveroone

Another solution is to make a Bind mount, which will "link" the two directories together.

Extract from mount man page :

 Since Linux 2.4.0 it is possible to remount part of the file  hierarchy
 somewhere else. The call is
      mount --bind olddir newdir
 After this call the same contents is accessible in two places.

So do something like :

mount --bind /home/backup/ /backup/

All you have to do next is to make this permanent by adding the corresponding line to /etc/fstab

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Mount a new partition to existing mount point

From Dev

Windows installation: Couldn't create a new partition or locate an existing one

From Dev

Setup was unable to create a new system partition or locate an existing system partition - Can't install Windows 7

From Dev

Error installing Windows - Setup was unable to create a new system partition or locate an existing system partition

From Dev

How to create vdi from existing (off line) partition?

From Dev

Create new dataframe from existing dataframe dynamically

From Dev

create new instance from existing instance

From Dev

Create a new enumeration constant from an existing one

From Dev

How to create a new column from existing column?

From Dev

Create a new curve from existing curve - Shapely

From Dev

Python: create a new column from existing columns

From Dev

Create a new table from two existing table

From Dev

Create a new DataFrame column from an existing one?

From Dev

Create a new plist from the existing plist?

From Dev

Create new array from an existing array attributes

From Dev

Create new array from existing array in php

From Dev

How to create a new column from existing column?

From Dev

Need to create a new table from existing table

From Dev

Create a new table from two existing table

From Dev

Create new columns from an existing column conditionally

From Dev

Git: create a new project from an existing one

From Dev

Create new object from existing array and object

From Dev

Create a new Array from Existing array in

From Dev

How to mount partition from disk

From Dev

Old partition to create new partition

From Dev

Mount new partition over top of live data

From Dev

How to create a new mount point that points to a folder in the existing file system (CentOS)

From Dev

parted: create new partition

From Dev

“We couldn't create a new partition or locate an existing one. For more information, see the Setup log files”

Related Related

  1. 1

    Mount a new partition to existing mount point

  2. 2

    Windows installation: Couldn't create a new partition or locate an existing one

  3. 3

    Setup was unable to create a new system partition or locate an existing system partition - Can't install Windows 7

  4. 4

    Error installing Windows - Setup was unable to create a new system partition or locate an existing system partition

  5. 5

    How to create vdi from existing (off line) partition?

  6. 6

    Create new dataframe from existing dataframe dynamically

  7. 7

    create new instance from existing instance

  8. 8

    Create a new enumeration constant from an existing one

  9. 9

    How to create a new column from existing column?

  10. 10

    Create a new curve from existing curve - Shapely

  11. 11

    Python: create a new column from existing columns

  12. 12

    Create a new table from two existing table

  13. 13

    Create a new DataFrame column from an existing one?

  14. 14

    Create a new plist from the existing plist?

  15. 15

    Create new array from an existing array attributes

  16. 16

    Create new array from existing array in php

  17. 17

    How to create a new column from existing column?

  18. 18

    Need to create a new table from existing table

  19. 19

    Create a new table from two existing table

  20. 20

    Create new columns from an existing column conditionally

  21. 21

    Git: create a new project from an existing one

  22. 22

    Create new object from existing array and object

  23. 23

    Create a new Array from Existing array in

  24. 24

    How to mount partition from disk

  25. 25

    Old partition to create new partition

  26. 26

    Mount new partition over top of live data

  27. 27

    How to create a new mount point that points to a folder in the existing file system (CentOS)

  28. 28

    parted: create new partition

  29. 29

    “We couldn't create a new partition or locate an existing one. For more information, see the Setup log files”

HotTag

Archive