Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > Your Distro > SuSE Linux Help
Reload this Page [SOLVED] Partitions on my hard disk questions
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

SuSE Linux Help For help and discussions related to SuSE Linux

Closed Thread
 
Thread Tools Display Modes
Old 05-03-2008   #11 (permalink)
Linux Guru
 
Join Date: Oct 2007
Location: Bristol, UK
Posts: 1,581
Quote:
Originally Posted by saurabh1403 View Post
Hello,
finally, I end up in installing the open suse again, but there is still a problem.
Can you post the output of
Code:
su
fdisk -l
cat /etc/fstab
df -h
so we know partition structure and mount options used for each partition.
Jonathan183 is offline  
Old 05-03-2008   #12 (permalink)
Just Joined!
 
Join Date: May 2008
Posts: 43
Quote:
Originally Posted by Jonathan183 View Post
Can you post the output of
Code:
su
fdisk -l
cat /etc/fstab
df -h
so we know partition structure and mount options used for each partition.
Hello,

Here is the whole output for the commands given in previous message:

------------------------------------***************--------------------------------------------------
phoenix:/home/saurabhg # fdisk -l

Disk /dev/hdc: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdc1 * 1 2433 19543041 c W95 FAT32 (LBA)
/dev/hdc2 2434 9729 58605120 f W95 Ext'd (LBA)
/dev/hdc5 2434 4866 19543041 b W95 FAT32
/dev/hdc6 4867 6674 14514727 b W95 FAT32
/dev/hdc7 7195 7299 843381 82 Linux swap / Solaris
/dev/hdc8 7300 8405 8875912 b W95 FAT32
/dev/hdc9 9144 9729 4707013+ 83 Linux
/dev/hdc10 6674 7194 4184901 83 Linux
/dev/hdc11 8405 9143 5935986 83 Linux

Partition table entries are not in disk order


phoenix:/home/saurabhg # cat /etc/fstab
/dev/hdc11 / ext3 acl,user_xattr 1 1
/dev/hdc10 /home ext3 acl,user_xattr 1 2
/dev/hdc7 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/fd0 /media/floppy auto noauto,user,sync 0 0
/dev/hdc1 /windows/C vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdc5 /windows/D vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdc6 /windows/E vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdc8 /windows/F vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdc9 /data1 auto noauto,user 0 0


phoenix:/home/saurabhg # df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hdc11 5.6G 3.5G 1.9G 66% /
udev 221M 124K 221M 1% /dev
/dev/hdc10 4.0G 146M 3.6G 4% /home
/dev/hdc1 19G 18G 1.5G 93% /windows/C
/dev/hdc5 19G 18G 1.1G 95% /windows/D
/dev/hdc6 18G 17G 1.4G 93% /windows/E
/dev/hdc8 8.5G 7.6G 906M 90% /windows/F
/dev/hdc9 4.5G 1.5G 2.8G 36% /data1

--------------------------------*************************------------------------------------------
saurabh1403 is offline  
Old 05-03-2008   #13 (permalink)
Linux Guru
 
Join Date: Oct 2007
Location: Bristol, UK
Posts: 1,581
Can you post the output of
Code:
mount
su
ls /data1 -l
the l is a small L.
Jonathan183 is offline  
Old 05-03-2008   #14 (permalink)
Just Joined!
 
Join Date: May 2008
Posts: 43
Hello here is its ouput:

---------------------------------***********************--------------------------------------

saurabhg@phoenix:/data1/saurabhg/Desktop> mount
/dev/hdc11 on / type ext3 (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/hdc10 on /home type ext3 (rw,acl,user_xattr)
/dev/hdc1 on /windows/C type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc5 on /windows/D type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc6 on /windows/E type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc8 on /windows/F type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
securityfs on /sys/kernel/security type securityfs (rw)
/dev/hdc9 on /data1 type ext3 (rw,noexec,nosuid,nodev,user=saurabhg)
/dev/sda1 on /media/SAURABH_G type vfat (rw,nosuid,nodev,noatime,uid=1000,utf8,shortname=l ower)

saurabhg@phoenix:/data1/saurabhg/Desktop> su
Password:

phoenix:/data1/saurabhg/Desktop # ls /data1 -l
total 32
drwxr-xr-x 17 1001 users 4096 2007-08-31 14:14 deepalig
drwx------ 2 root root 16384 2007-08-19 09:40 lost+found
drwxr-xr-x 41 saurabhg users 4096 2008-05-02 21:49 saurabhg

----------------------------------******************************------------------------
saurabh1403 is offline  
Old 05-03-2008   #15 (permalink)
Linux Guru
 
Join Date: Oct 2007
Location: Bristol, UK
Posts: 1,581
Quote:
Originally Posted by saurabh1403 View Post
Hello here is its ouput:

---------------------------------***********************--------------------------------------

saurabhg@phoenix:/data1/saurabhg/Desktop> mount
/dev/hdc11 on / type ext3 (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/hdc10 on /home type ext3 (rw,acl,user_xattr)
/dev/hdc1 on /windows/C type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc5 on /windows/D type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc6 on /windows/E type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
/dev/hdc8 on /windows/F type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=tr ue)
securityfs on /sys/kernel/security type securityfs (rw)
/dev/hdc9 on /data1 type ext3 (rw,noexec,nosuid,nodev,user=saurabhg)
/dev/sda1 on /media/SAURABH_G type vfat (rw,nosuid,nodev,noatime,uid=1000,utf8,shortname=l ower)
Your problem is the way you have mounted the partition, I suggest you go into Yast->system->partitioner and change the mount option for hdc9 so that it is not mounted by user (you will find this in fstab options).
When you apply changes try running mount again and check the entry for hdc9 does not include noexec.
Jonathan183 is offline  
Old 05-03-2008   #16 (permalink)
Just Joined!
 
Join Date: May 2008
Posts: 43
I checked the fstab options for hdc9, it is
=>not mounted at the start up (checked)

still the mount command shows "noexec" for hdc9.
saurabh1403 is offline  
Old 05-03-2008   #17 (permalink)
Linux Guru
 
Join Date: Oct 2007
Location: Bristol, UK
Posts: 1,581
Uncheck this entry, you want the partition to be automatically mounted. The only box which I have checked is access control lists (second check box from the bottom of the dialog box).

Ed: eg on my system with user mount box checked and changes applied mount reports
Code:
/dev/sda8 on /Cent-OS-root type ext3 (rw,noexec,nosuid,nodev,acl)
when I uncheck the user mount box and apply changes mount reports
Code:
/dev/sda8 on /Cent-OS-root type ext3 (rw,acl)
Jonathan183 is offline  
Old 05-10-2008   #18 (permalink)
Just Joined!
 
Join Date: May 2008
Posts: 43
thanks very much....it solved my problem...
I made that silly mistake of checking the box
saurabh1403 is offline  
Closed Thread



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
 

Similar Threads
Thread Thread Starter Forum Replies Last Post
USB HD (enclosure) changing mountpoins Everytime I copy files . . . icedtea Peripherals / Hardware 0 10-11-2007 02:14 PM
booting from ISO image in hard disk sapna Installation 5 12-21-2005 03:22 PM
Dual Boot and hard disk re-partition scottj SuSE Linux Help 1 11-16-2005 01:22 AM
hard disk problem. Bad sector? fastandfurryous Peripherals / Hardware 1 01-24-2005 01:56 PM
Hard disk Partitions for various Operating systems. pchin Linux Tutorials, HOWTO's & Reference Material 0 12-12-2004 03:01 PM

Free Magazines
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 01:02 AM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0