Problem with install.sh

3 posts / 0 new
Last post
#1 Sun, 04/06/2008 - 03:00
G4sT0n

Problem with install.sh

Hello everyone,

I have one little problem. I think I need just a trick to pass out but I don't arrive.

I explain : - I have one dedibox (private server for 30 รข

Sun, 04/06/2008 - 17:01
Joe
Joe's picture

What's in /etc/issue? That needs to return something we can recognize.

And "uname -m" ordinarily needs to return a valid architecture.

If you know (really know, it's important that you get it right, or stuff just won't work after installation) what OS and architecture you have, then you can force it to use that information.

Search within install.sh for this line:

[code:1]
arch=`uname -m`
[/code:1]

Change it to (assuming you are running Debian 4.0 on i386 architecture):

[code:1]
arch=i386
os_type=debian
os_version=4.0
[/code:1]

Save it, and try re-running it. I think that'll allow it to install.

But, I'd be curious what uname -m reports, and what is in /etc/issue.

--

Check out the forum guidelines!

Sun, 04/06/2008 - 23:18 (Reply to #2)
G4sT0n

uname -m returns i686

I put the code where you said me and it works. Thanks a lot.

Topic locked