Find the answer to your Linux question:
Results 1 to 4 of 4
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0xf0000000 Device Boot Start End Blocks ...
  1. #1
    Just Joined!
    Join Date
    Apr 2009
    Posts
    2

    partition table how do i access other partition?

    Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
    255 heads, 63 sectors/track, 121601 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xf0000000

    Device Boot Start End Blocks Id System
    /dev/sda1 24321 121601 781409632+ 83 Linux
    /dev/sda2 * 1 43 345366 83 Linux
    /dev/sda3 44 24320 195005002+ 5 Extended
    /dev/sda5 44 651 4883728+ 83 Linux
    /dev/sda6 652 1016 2931831 83 Linux
    /dev/sda7 1017 3250 17944573+ 82 Linux swap / Solaris
    /dev/sda8 3251 3299 393561 83 Linux
    /dev/sda9 3300 24320 168851151 83 Linux

    that's my fdisk -l

    i made a partition when i installed, for 800gb ...i think that's the 1st one.sda1 i put the mount point as /data

    is that wrong? because i can't cd into it.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    How did you mount partition? Have you changed ownership of /data?
    Execute this
    Code:
    id
    Note down user_id and group_id.
    Code:
    su -
    chown -R user_id:group_id /data

    In case it doesn't work, post the output of df -h command here.
    Code:
    df -h
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Apr 2009
    Posts
    2
    Hey thanks for helping!

    Filesystem Size Used Avail Use% Mounted on
    /dev/sda2 327M 149M 161M 49% /
    tmpfs 3.0G 0 3.0G 0% /lib/init/rw
    udev 10M 172K 9.9M 2% /dev
    tmpfs 3.0G 0 3.0G 0% /dev/shm
    /dev/sda9 159G 225M 151G 1% /home
    /dev/sda8 373M 11M 343M 3% /tmp
    /dev/sda5 4.6G 1.4G 3.0G 32% /usr
    /dev/sda6 2.8G 719M 2.0G 27% /var


    ok it doesn't recognise the partition is there, there should be another 800gb in another partition,
    when i installed debian i went for the bare minimum, and i don't want to download gnome-volume-manager :P

    when I installed debian i did a manual partition, i first put a primary partition of 800gb at the end of the disk, manually putting the mount point as /data am i allowed to do that?

    and then for the other 200gb debian logically partitioned the rest for me.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    /dev/sda1 is not mounted yet.
    Execute this
    Code:
    su -
    mount -t ext3 /dev/sda1  /data
    ls /data
    df -h
    Check if it list correct size and contents in /data. Execute chown command to gain ownership.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •