Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread Chris
On Thu, Oct 08, 1998 at 02:04:46PM +0100, G. Kapetanios wrote:

> 
> I do't know what because the ncurses prompt is on top. 
> I press ok it saya something too fast for me to read and goes back to the  
> main menu 
> I was thiing of downloading the base2_0.tgz stuff putting them in the
> /dev/hda1 (dos) partiton and rerunning the install in case 
> it minds that the stuff is in /dev/hdc2
> I really appreciate your help
> 

That's ok :)


Allrighty thenfirst off, if you do have a problem then you can hit 
 (or any other number from 2-6) to get to a virtual terminal.

Now, I think I've seen the kind of error you were talking about.
One solution to this is to actually mount the drive by hand.  Try the
following:


Open a virtual terminal (see above), then run the following:

# cd /
# mkdir mnt2
# mount -t vfat /dev/hdc2 /mnt2 (maybe use -t msdos)
# ls /mnt2
(you should see base2_0.tgz in here)

Switch back to the curses screen (?)
Now try specifying the base location as an "allready mounted partition",
/mnt2/.

Let me know how that goes.

Chris



BTW, Does anyone know why this happens sometimes???


-- 

--
REALITY.SYS corrupted: Reboot universe? (Y/N/Q)   Debian GNU/Linux
--
Reply with subject 'request key' for PGP public key.  KeyID 0xA9E087D5



Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread Wichert Akkerman
Previously G. Kapetanios wrote:
> My question is a result of problems explained in another email.
> They concer a deleded root partition. My question has to do with 
> binaries which are there can be seen can be read but cannot be executed.

Check if the binaries are still marked as executable. If not you can make
them executable again using chmod. An example:
chmod a+x /usr/bin/less

If that does not work you can check if all libraries still exist. You can
check that using ldd. Another example:

 [pc135a;~]-6> ldd /usr/bin/less
/lib/nfslock.so.0 => /lib/nfslock.so.0 (0x4000d000)
libncurses.so.3.4 => /lib/libncurses.so.3.4 (0x40012000)
libc.so.6 => /lib/libc.so.6 (0x40057000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000)

(The specific output can differ). If one or more libraries are missing you
will have to reinstall those (and optionally run ldconfig).

Wichert.

-- 
==
This combination of bytes forms a message written to you by Wichert Akkerman.
E-Mail: [EMAIL PROTECTED]
WWW: http://www.wi.leidenuniv.nl/~wichert/


pgp12Vb4lWpUa.pgp
Description: PGP signature


Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread G. Kapetanios

On Thu, 8 Oct 1998, Santiago Vila wrote:

> On Thu, 8 Oct 1998, G. Kapetanios wrote:
> 
> > I have installed an old debian 1.0 system in / 
> > and I have all my hamm stuff in /usr 
> > Is this a libc5 / libc6 problem?
> 
> An old Debian 1.0 system? Does your kernel support ELF binaries?
sorry 1.1.
the kernel is 2.0.0

thanks for your help

> 
> ( BTW: Debian 1.0 never existed, could you clarify this?
>   See /etc/debian_version ).
> 
> -- 
>  "cbfbaab3704dc2dd44638a38f111d0b3" (a truly random sig)
> 
> 

---
George Kapetanios
Churchill College
Cambridge, CB3 0DSE-Mail: [EMAIL PROTECTED]
U.K.  WWW: http://garfield.chu.cam.ac.uk/~gk205/work_info.html
---




Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread Santiago Vila
On Thu, 8 Oct 1998, G. Kapetanios wrote:

> I have installed an old debian 1.0 system in / 
> and I have all my hamm stuff in /usr 
> Is this a libc5 / libc6 problem?

An old Debian 1.0 system? Does your kernel support ELF binaries?

( BTW: Debian 1.0 never existed, could you clarify this?
  See /etc/debian_version ).

-- 
 "cbfbaab3704dc2dd44638a38f111d0b3" (a truly random sig)



Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread G. Kapetanios




On Thu, 8 Oct 1998, Chris wrote:

> On Thu, Oct 08, 1998 at 11:02:51AM +0100, G. Kapetanios wrote:
> > 
> > My question is a result of problems explained in another email.
> > They concer a deleded root partition. My question has to do with 
> > binaries which are there can be seen can be read but cannot be executed.
> > 
> > for example
> > # /usr/bin/less
> > /usr/bin/less : No such file o directory 
> > The same happens to all binaries in /usr
> > which is a mounted partition
> > Tosummarise the setup
> > I have installed an old debian 1.0 system in / 
> > and I have all my hamm stuff in /usr 
> > Is this a libc5 / libc6 problem
> > 
> > 
> 
> Is this an nfs share?  Have you tried using exec option when mounting?
> 
> Chris
> 


I mount the /usr partition by
 mount -t ext2 /dev/hda4 /usr
IT is not nfs
it is not mounted automatically on boot through /etc/fstab

> 
> 

---
George Kapetanios
Churchill College
Cambridge, CB3 0DSE-Mail: [EMAIL PROTECTED]
U.K.  WWW: http://garfield.chu.cam.ac.uk/~gk205/work_info.html
---




Re: HELP!! binaries not executed (fwd)

1998-10-08 Thread Chris
On Thu, Oct 08, 1998 at 11:02:51AM +0100, G. Kapetanios wrote:
> 
> My question is a result of problems explained in another email.
> They concer a deleded root partition. My question has to do with 
> binaries which are there can be seen can be read but cannot be executed.
> 
> for example
> # /usr/bin/less
> /usr/bin/less : No such file o directory 
> The same happens to all binaries in /usr
> which is a mounted partition
> Tosummarise the setup
> I have installed an old debian 1.0 system in / 
> and I have all my hamm stuff in /usr 
> Is this a libc5 / libc6 problem
> 
> 

Is this an nfs share?  Have you tried using exec option when mounting?

Chris