addmin add to a directory

Discussion in 'HOWTO-Related Questions' started by kwickcut, Oct 21, 2011.

  1. kwickcut

    kwickcut Member HowtoForge Supporter

    adding a hdd to a directory

    i have a site i need to add a hard drive to for extra storage the drive i want to add is listed below

    Code:
     Device Boot      Start         End      Blocks   Id  System
    /dev/sda1               1      243201  1953512001   83  Linux
    
    and i want to link this drive to wizshare under root directory but not under the web directory
    Code:
    /
    cgi-bin
    log
    ssl
    tmp
    web
    wizshare
    what is the best way to do this i have fasttab and am not sure how this should be done thanks.


    kwick
     
    Last edited: Oct 21, 2011
  2. falko

    falko Super Moderator Howtoforge Staff

    You must mount the partition to the wizshare directory:
    Code:
    mount /dev/sda1 /path/to/wizshare
     

Share This Page