RE: Permission denied error while doing a make installworld

2004-02-25 Thread Kevin Greenidge
Did a search on google and fixed the issue. /etc/fstab had noexec,nosuid
on the /tmp partition so all I had to do was umount /tmp


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Greenidge
Sent: Wednesday, February 25, 2004 5:59 AM
To: [EMAIL PROTECTED]
Subject: Permission denied error while doing a make installworld

Everything works well up until this point. I haven't changed any
permissions or anything so I baffled as to why the error below may be
happening. Please let me know what I'm doing wrong as this has worked
many times before on my other boxes without problems. 
 
cd /usr/src
 
santacruz# make installworld
mkdir -p /tmp/install.63146
for prog in [ awk cap_mkdb cat chflags chmod chown  date echo egrep find
grep  ln make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh sysctl
test true uname wc zic; do  cp `which $prog` /tmp/install.63146;  done
cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386  MACHINE=i386
OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec
PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503
GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin
GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font
GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac
PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/o
bj/usr/src/i386/usr/games:/tmp/install.63146 make -f Makefile.inc1
reinstall
make: permission denied
*** Error code 126
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
santacruz#
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Permission denied error while doing a make installworld

2004-02-25 Thread Ed Budd
On Wed, 25 Feb 2004 05:59:03 -0600
Kevin Greenidge [EMAIL PROTECTED] wrote:

 Everything works well up until this point. I haven't changed any
 permissions or anything so I baffled as to why the error below may be
 happening. Please let me know what I'm doing wrong as this has worked
 many times before on my other boxes without problems. 
  
 cd /usr/src
  
 santacruz# make installworld
 mkdir -p /tmp/install.63146
 for prog in [ awk cap_mkdb cat chflags chmod chown  date echo egrep
 find grep  ln make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh
 sysctl test true uname wc zic; do  cp `which $prog`
 /tmp/install.63146;  done cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj 
 MACHINE_ARCH=i386  MACHINE=i386
 OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec
 PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503
 GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin
 GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font
 GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac
 PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/us
 r/o bj/usr/src/i386/usr/games:/tmp/install.63146 make -f Makefile.inc1
 reinstall
 make: permission denied
 *** Error code 126
  
 Stop in /usr/src.
 *** Error code 1
  
 Stop in /usr/src.
 santacruz#
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]



I'm just guessing here since you didn't specify one way or the other
but are you running under 'securelevel=YES' in /etc/rc.conf? If so, I
think you need to change this to 'securelevel=NO' (and comment out the
actual level specified in this file) before trying 'make installworld'
again. Then, just change it back if/when everything is complete.

Hope that helps,

EB
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Permission denied error while doing a make installworld

2004-02-25 Thread Ed Budd
On Wed, 25 Feb 2004 06:11:44 -0600
Kevin Greenidge [EMAIL PROTECTED] wrote:

 Did a search on google and fixed the issue. /etc/fstab had
 noexec,nosuid on the /tmp partition so all I had to do was umount /tmp
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Kevin
 Greenidge
 Sent: Wednesday, February 25, 2004 5:59 AM
 To: [EMAIL PROTECTED]
 Subject: Permission denied error while doing a make installworld
 
 Everything works well up until this point. I haven't changed any
 permissions or anything so I baffled as to why the error below may be
 happening. Please let me know what I'm doing wrong as this has worked
 many times before on my other boxes without problems. 
  
 cd /usr/src
  
 santacruz# make installworld
 mkdir -p /tmp/install.63146
 for prog in [ awk cap_mkdb cat chflags chmod chown  date echo egrep
 find grep  ln make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh
 sysctl test true uname wc zic; do  cp `which $prog`
 /tmp/install.63146;  done cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj 
 MACHINE_ARCH=i386  MACHINE=i386
 OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec
 PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503
 GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin
 GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font
 GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac
 PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/us
 r/o bj/usr/src/i386/usr/games:/tmp/install.63146 make -f Makefile.inc1
 reinstall
 make: permission denied
 *** Error code 126
  
 Stop in /usr/src.
 *** Error code 1
  
 Stop in /usr/src.
 santacruz#
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


Heh, that bit me once too but I forgot to mention it.

Glad you fixed it.

Cheers,

EB
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]