AH! That looks to be it, except now I don’t know how to change it. I looked in fstab and this is how my fstab looks:
dmc55@dmcLinux00:/etc> more fstab
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part6 swap swap defaults 0 0
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part7 / ext3 acl,user_xattr 1 1
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part5 /boot ext3 acl,user_xattr 1 2
/dev/mapper/sil_ajabcfcfcaca_part1 /data ext3 user,acl,user_xattr 1 2
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part11 /home ext3 acl,user_xattr 1 2
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part10 /opt ext3 acl,user_xattr 1 2
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part8 /usr ext3 acl,user_xattr 1 2
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part9 /var ext3 acl,user_xattr 1 2
/dev/disk/by-id/ata-HDS722525VLSA80_VN6JNRCFF1J5AE-part1 /windows/C ntfs-3g user,noauto,users,gid=users,
fmask=133,dmask=022,locale=en_US.UTF-8 0 0
/dev/disk/by-id/ata-ST3500641AS_3PM00J4F-part1 /windows/D ntfs-3g user,noauto,users,gid=users,fmask=133,
dmask=022,locale=en_US.UTF-8 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
The parition is mounted as /data and notice that it is a hardware RAID 0 setup.
When I issue a mount command it shows mounted with noexec as below:
dmc55@dmcLinux00:/etc> mount
/dev/sda7 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/sda5 on /boot type ext3 (rw,acl,user_xattr)
/dev/mapper/sil_ajabcfcfcaca_part1 on /data type ext3 (rw,noexec,nosuid,nodev,acl,user_xattr)
/dev/sda11 on /home type ext3 (rw,acl,user_xattr)
/dev/sda10 on /opt type ext3 (rw,acl,user_xattr)
/dev/sda8 on /usr type ext3 (rw,acl,user_xattr)
/dev/sda9 on /var type ext3 (rw,acl,user_xattr)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
securityfs on /sys/kernel/security type securityfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/proc on /var/lib/ntp/proc type proc (ro)
I went in the partitioner tool in YaST and didn’t see any fstab options set there where you could even state noexec.
Where do I change it?
Thanks. BTW this would also explain why I get that bad interpreter message on a totally different ‘make’ I tried to do on a gspca package to try to get my webcam to work since that’s broken too. The package is also on the same partition.