Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12
hello, when i install kubuntu linux 7.04 with kde, then that linux dont show windows partitions, because when i open storage media there is only floppy and cdrom, but no ...
  1. #1
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12

    Unhappy about ntfs and fat32 sytems on kubuntu 7.04

    hello,
    when i install kubuntu linux 7.04 with kde, then that linux dont show windows partitions, because when i open storage media there is only floppy and cdrom, but no hdd? when il be used ubuntu 5.10 with gnome 2.12 thats problems dont be and its shows all data from windows fat32 and ntfs partitions? whats the problem?
    thanks in advance.

  2. #2
    Linux Engineer valemon's Avatar
    Join Date
    Oct 2006
    Location
    Volos
    Posts
    934
    post the output of "sudo fdisk -l"
    Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
    Arch Linux
    Linux user #442041

  3. #3
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12
    usage: fdisk [-1] [-bssz] [-u] device
    e.g. fdisk /dev/hda (for the first ide disk)
    or fdisk /dev/sdc (for the third scsi disk)
    or fdisk /dev/eda (for the first ps/2 esdi drive)
    or fdisk /dev/ida/ c0d0 (for raid devices)

  4. #4
    Linux Engineer valemon's Avatar
    Join Date
    Oct 2006
    Location
    Volos
    Posts
    934
    fdisk -l
    this is a small L. post output again it should look like
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 14793 118824741 7 HPFS/NTFS
    /dev/sda2 18746 19457 5719140 7 HPFS/NTFS
    /dev/sda3 14794 18745 31744440 f W95 Ext'd (LBA)
    /dev/sda5 14794 14921 1028128+ 82 Linux swap / Solaris
    /dev/sda6 14922 16451 12289693+ 83 Linux
    /dev/sda7 16452 18745 18426523+ 83 Linux
    Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
    Arch Linux
    Linux user #442041

  5. #5
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12
    soorry you need bit wait about fdisk, but when i start partition magic pro server, then his write an error about hdd : #106
    how can i fix this problem?

  6. #6
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12
    it works now when i change preferences in disk & filesystems and reads fat32 partition, but ntfs partition with windows not reads. it says: you dont have enough permisions to look at this partition. what will i need to do?

  7. #7
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    execute this
    Code:
    sudo mkdir /media/ntfs
    sudo mount -t ntfs /dev/<partition> /media/ntfs -o defaults,umask=0
    check /media/ntfs folder.

    Ubuntu supports NTFS read access only. install ntfs-3g package to enable write access.
    Code:
    sudo apt-get update
    sudo apt-get install ntfs-3g
    replace ntfs with ntfs-3g in mount command.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  8. #8
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12
    Quote Originally Posted by devils_casper View Post
    execute this
    Code:
    sudo mkdir /media/ntfs
    sudo mount -t ntfs /dev/<partition> /media/ntfs -o defaults,umask=0
    check /media/ntfs folder.

    Ubuntu supports NTFS read access only. install ntfs-3g package to enable write access.
    Code:
    sudo apt-get update
    sudo apt-get install ntfs-3g
    replace ntfs with ntfs-3g in mount command.

    thanks! you amazing! it really helps to me

  9. #9
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    glad to help you !

    you can add an entry in /etc/fstab file to auto-mount partition at boot up, you wont have to mount partitions manually after that.
    Code:
    kdesu kate /etc/fstab
    add this code for each partition
    Code:
    /dev/<partition>  <mount_point>  <filesystem> defaults,umask=0 0 0
    let say, partition /dev/sda1, mount_point -- /media/ntfs and filesystem -- NTFS
    Code:
    /dev/sda1  /media/ntfs  ntfs-3g  defaults,umask=0 0 0
    for FAT32 partition, replace ntfs-3g with vfat.
    save file and reboot.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  10. #10
    Just Joined!
    Join Date
    Jun 2007
    Posts
    12
    when i try to install ntfs-3g then it gots error:
    checking build system type... i686-pc-linux-gnulibc1
    checking host system type... i686-pc-linux-gnulibc1
    checking target system type... i686-pc-linux-gnulibc1
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    configure: Setting exec_prefix to /
    checking for gcc... gcc
    checking for C compiler default output file name... configure: error: C compiler cannot create executables
    See `config.log' for more details.
    what i need to do

Page 1 of 2 1 2 LastLast

Posting Permissions

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