Announcement

Collapse
No announcement yet.

[SOLVED] change partition permission?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [SOLVED] change partition permission?

    i've searched around but couldn't answers that would satisfy me...

    i can't access my windows partition from kubuntu. i guess it has something to do with permissions but when i tried to locate windows partition via konsole to change it, i couldn't find such. or maybe i just don't know how to locate it...

    thanks!

    #2
    Re: change partition permission?

    What version of Kubuntu are you using?

    Open a console and type:
    Code:
    sudo fdisk -l
    Copy and paste the results. This will show us how your HDs are partitioned and formatted.
    Windows no longer obstructs my view.
    Using Kubuntu Linux since March 23, 2007.
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      Re: change partition permission?

      im using Gutsy...
      here's the result:

      astheo@astheo-desktop:~$ sudo fdisk -l
      [sudo] password for astheo:

      Disk /dev/sda: 40.0 GB, 40020664320 bytes
      255 heads, 63 sectors/track, 4865 cylinders
      Units = cylinders of 16065 * 512 = 8225280 bytes
      Disk identifier: 0xa022a022

      Device Boot Start End Blocks Id System
      /dev/sda1 * 1 2295 18434556 7 HPFS/NTFS
      /dev/sda2 2296 4752 19735852+ 83 Linux
      /dev/sda3 4753 4865 907672+ f W95 Ext'd (LBA)
      /dev/sda5 4753 4865 907641 82 Linux swap / Solaris

      Disk /dev/sdb: 2112 MB, 2112094208 bytes
      2 heads, 63 sectors/track, 32739 cylinders
      Units = cylinders of 126 * 512 = 64512 bytes
      Disk identifier: 0x00cb6e16

      Device Boot Start End Blocks Id System
      /dev/sdb1 * 1 32740 2062576 b W95 FAT32



      thanks!

      Comment


        #4
        Re: change partition permission?

        So you have a single 40G HD and an attached 2G USB Thumb Drive. On the 40G HD you have three partions - sda1, sda2, and sda5 (sda3 is an extend partition in which sda5 (a logical partition) resides). sda1 is your partition that contains Windoze (Win XP or Vista??).

        Open Adept Manager (K Menu | System | Adept Manager) and search for ntfs-3g. If it isn't installed, click the > arrow and click on Request Install and then click on Apply Changes to have it installed.

        Then open a console and type:
        Code:
        cat /etc/fstab
        Copy and paste the output.
        Windows no longer obstructs my view.
        Using Kubuntu Linux since March 23, 2007.
        "It is a capital mistake to theorize before one has data." - Sherlock Holmes

        Comment


          #5
          Re: change partition permission?

          Originally posted by Snowhog
          So you have a single 40G HD and an attached 2G USB Thumb Drive. On the 40G HD you have three partions - sda1, sda2, and sda5 (sda3 is an extend partition in which sda5 (a logical partition) resides). sda1 is your partition that contains Windoze (Win XP or Vista??).
          that's right. im using XP..

          Originally posted by Snowhog
          Open Adept Manager (K Menu | System | Adept Manager) and search for ntfs-3g. If it isn't installed, click the > arrow and click on Request Install and then click on Apply Changes to have it installed.

          Then open a console and type:
          Code:
          cat /etc/fstab
          Copy and paste the output.
          unfortunately i cannot do this under kubuntu, my internet connection is broken. my onboard network card isn't detected. il have to buy a PCI LAN card first. but i'll download and install it manually anyway, so this is gonna take a while...il be back as soon as i have the output...

          thanks!

          Comment


            #6
            Re: change partition permission?

            hi just have my internet back..
            i've installed the ntfs-3g. here's the output of the comman

            adredz@adredz-desktop:~$ cat /etc/fstab
            # /etc/fstab: static file system information.
            #
            # <file system> <mount point> <type> <options> <dump> <pass>
            proc /proc proc defaults 0 0
            # /dev/sda2
            UUID=63cd03bb-f4d5-41cb-9e08-d77a859e1699 / ext3 defaults,errors=remount-ro 0 1
            # /dev/sda5
            UUID=86fd2048-4f1b-42b5-b5bf-78eacd3a346b none swap sw 0 0
            /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec 0 0
            /dev/fd0 /media/floppy0 auto rw,user,noauto,exec 0


            btw, my windows partition is detected but kubuntu won't allow me to access it...

            Comment


              #7
              Re: change partition permission?

              If you will open the Konsole and enter the command
              Code:
              blkid
              we can probably tell you how to add a line to the /etc/fstab file that will automatically mount your NTFS formatted partition.

              Comment


                #8
                Re: change partition permission?

                sorry for the late reply...

                anyway here's the output...

                adredz@adredz-desktop:~$ blkid
                /dev/sda1: UUID="60E457AFE45785E6" TYPE="ntfs"
                /dev/sda2: UUID="63cd03bb-f4d5-41cb-9e08-d77a859e1699" SEC_TYPE="ext2" TYPE="ext3"
                /dev/sda5: UUID="86fd2048-4f1b-42b5-b5bf-78eacd3a346b" TYPE="swap"


                thanks!

                Comment


                  #9
                  Re: change partition permission?

                  Edit your /etc/fstab as 'root'. Open a console and type:
                  Code:
                  kdesu kate /etc/fstab
                  Change your file so it looks exactly like the following:
                  # /etc/fstab: static file system information.
                  #
                  # <file system> <mount point> <type> <options> <dump> <pass>
                  proc /proc proc defaults 0 0
                  # /dev/sda2
                  UUID=63cd03bb-f4d5-41cb-9e08-d77a859e1699 / ext3 defaults,errors=remount-ro 0 1
                  # /dev/sda1
                  UUID=60E457AFE45785E6 ntfs defaults 0 2

                  # /dev/sda5
                  UUID=86fd2048-4f1b-42b5-b5bf-78eacd3a346b none swap sw 0 0
                  /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec 0 0
                  /dev/fd0 /media/floppy0 auto rw,user,noauto,exec 0
                  Windows no longer obstructs my view.
                  Using Kubuntu Linux since March 23, 2007.
                  "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                  Comment


                    #10
                    Re: change partition permission?

                    @Snowhog
                    sorry for the late rep...

                    i got an error message, here:

                    root@adredz-desktop:~# kdesu kate /etc/fstab
                    Xlib: connection to ":0.0" refused by server
                    Xlib: No protocol specified

                    kdesu: cannot connect to X server :0.0
                    root@adredz-desktop:~# kdesu kate /etc/fstab
                    Xlib: connection to ":0.0" refused by server
                    Xlib: No protocol specified

                    kdesu: cannot connect to X server :0.0

                    thanks!

                    Comment


                      #11
                      Re: change partition permission?

                      What version of *ubuntu are you running? Guess I should have asked that earlier. No matter. Open Konqueror and navigate to /etc and then right-click on fstab and select Actions | Edit as Root

                      This will open the file for editing (as root).
                      Windows no longer obstructs my view.
                      Using Kubuntu Linux since March 23, 2007.
                      "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                      Comment


                        #12
                        Re: change partition permission?

                        im using gutsy...

                        Comment


                          #13
                          Re: change partition permission?

                          i typed cd /etc and it showed me the list of files within it. i right clicked on fstab, but got no "actions" option. sorry...

                          Comment


                            #14
                            Re: change partition permission?

                            Use Konqueror (the Web Browser).
                            Windows no longer obstructs my view.
                            Using Kubuntu Linux since March 23, 2007.
                            "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                            Comment


                              #15
                              Re: change partition permission?

                              im sorry, i thought i would do it in konsole. sorry...im on it

                              Comment

                              Working...
                              X