Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


CentOS Mounted Partitions Help
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

CentOS Mounted Partitions Help

So I have this free Dedi I was gave and thankfully I actually need to use it until my VPS comes back up :/ But I have an issue with the file systems. Everything is being stored on a Partition thats 49GB.. But I have a larger drive than that. Then theres another 177GB partition how can I merge that?

ScreenShot:
http://imgur.com/Had2Pr7

Comments

  • SaikuSaiku Member, Host Rep

    its a way telling you to stop using root and start using another user ;)

  • @Saiku said:
    its a way telling you to stop using root and start using another user ;)

    How? lol sorry dont know many ssh commands. Im currently using zPanel CP as well.

  • BluBoyBluBoy Member
    edited June 2014

    Find out what is using the space, eg:

       * du / -h --max-depth=1
       * Then follow it down (eg du /opt/ -h --max-depth=1 )
    

    Backup the offending directory:

       * mkdir /opt2 
       * mount /dev/sdd1 /opt2
       * rsync -a /opt /opt2
    

    Mount it in the right location

       * umount /dev/sdd1 && mount /dev/sdd1 /opt
    
  • ElChileElChile Member
    edited June 2014

    NM

Sign In or Register to comment.