LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-26-2003, 06:49 PM   #1
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Firebird installation/abysmal documentation :}


Hi Gents,

for about an hour and a half I've been now trying to
make sense of firebirds (Firebird-1.0.3.972.src.tar.gz)
documentation regarding Linux, the bootkit thing
(bootkit-1.0.0.796.tar.gz) which just has more source
without any makefiles, insetad of the suggested
bootstrap version of firebird ....

FirebirdSS-1.5.0.4027-RC7.i686.tar.gz doesn't work
either ... I can't understand why this would be a
popular database engine :}


Code:
root@diggn:/usr/src/FirebirdSS-1.5.0.4027-RC7.i686# ./install.sh 

Firebird super 1.5.0.4027-RC7.i686 Installation

Press Enter to start installation or ^C to abort
Extracting install data
groupadd: invalid option -- r
usage: groupadd [-g gid [-o]] group
useradd: invalid option -- r
usage: useradd  [-u uid [-o]] [-g group] [-G group,...] 
                [-d home] [-s shell] [-c comment] [-m [-k template]]
                [-f inactive] [-e expire ] [-p passwd] name
       useradd  -D [-g group] [-b base] [-s shell]
                [-f inactive] [-e expire ]
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
chown: `firebird.firebird': invalid user
cp: missing destination file
--------8<--------8<--------8<----edit 1----8<--------8<--------8<--------
Just googled for user-/groupadd -r ....
Quote:
Code:
       -r     This flag is used to create a system account.  That
	      is, an user with an UID lower than value of UID_MIN
	      defined in /etc/login.defs. Note that useradd  will
	      not  create  a  home  directory  for  such an user,
	      regardless    of	  the	 default    setting    in
	      /etc/login.defs.	 You have to specify -m option if
	      you want a home directory for a system  account  to
	      be created.  This is an option added by Red Hat.
BAH :}
--------8<--------8<--------8<----edit 1----8<--------8<--------8<--------

--------8<--------8<--------8<----edit 2----8<--------8<--------8<--------
Bah :} ... listing RH, MDK, Gentoo, SuSE, Debian ...

Slackers out of Luck?

What are
Code:
fillup/sysconfig	in SuSE?
insserv			in Debian?
chkconfig		in RH/MDK?
--------8<--------8<--------8<----edit 2----8<--------8<--------8<--------

I'm now about to edit the installer and see whether
I can fix all this, but hey ... ;)


Cheers,
Tink

Last edited by Tinkster; 11-26-2003 at 07:11 PM.
 
Old 11-28-2003, 03:58 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067

Original Poster
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Re: Firebird installation/abysmal documentation :}

BUMP :}


Quote:
--------8<--------8<--------8<----edit 2----8<--------8<--------8<--------
Bah :} ... listing RH, MDK, Gentoo, SuSE, Debian ...

Slackers out of Luck?

What are
Code:
fillup/sysconfig	in SuSE?
insserv			in Debian?
chkconfig		in RH/MDK?
--------8<--------8<--------8<----edit 2----8<--------8<--------8<--------

Cheers,
Tink
 
Old 11-29-2003, 01:32 PM   #3
mariuz
Member
 
Registered: Nov 2003
Distribution: gentoo
Posts: 69

Rep: Reputation: 19
Lightbulb

add an user firebird before the install
useradd firebird
then run the install
ps: i think the useradd command in slackware doesn't know the '-r' option

Last edited by mariuz; 11-29-2003 at 01:41 PM.
 
Old 11-29-2003, 06:52 PM   #4
cougyr
Member
 
Registered: Nov 2003
Posts: 98

Rep: Reputation: 15
When I first installed Firebird (apt-get install mozilla-firebird) [I love Debian], the browser really impressed me. It loaded quickly, surfed quickly and was very configurable. However, the longer I used it the slower it got. Yes, I purged history and cookie files, and even the phoenix directory. Finally, I switched to Opera 7.21.
 
Old 11-29-2003, 07:50 PM   #5
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067

Original Poster
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally posted by mariuz
add an user firebird before the install
useradd firebird
then run the install
ps: i think the useradd command in slackware doesn't know the '-r' option :( :scratch:
I actually got over that user bit by editing
the install script. However, I have no idea
what those other tools mentioned are, and
how to work around it in Slack.


Cheers,
Tink
 
Old 11-30-2003, 01:43 AM   #6
Mephisto
Member
 
Registered: Oct 2002
Location: Washington D.C, USA
Distribution: Slack 12, Etch, Gutsy
Posts: 453

Rep: Reputation: 31
Have you tried using rpm2tgz on the redhat RPMs? I have not tried installing firebird sql on any of my Slack boxes yet, so I am afraid I can't help much. Alternatively, if you have a Redhat box you could compile using checkinstall and make a tgz? Personally, having used both, I prefer Postgre over Firebird, though FSQL is lower maintenance.

chkconfig is a SysV app for active/inactive services if I remember correctly, I don't recognize the other two... sorry
 
Old 11-30-2003, 09:21 AM   #7
lsces
LQ Newbie
 
Registered: Nov 2003
Location: Broadway, UK
Posts: 24

Rep: Reputation: 2
Firebird Support

You will find the support you need at

http://groups.yahoo.com/group/firebird-support/

but a request has been posed there linking to here

The documentation on Firebird has been somewhat affected by the fact that Borland made it all available, and then pulled it back in house., but there is some use stuff at

http://www.ibphoenix.com/

in particular the knowledgebase
 
Old 11-30-2003, 03:10 PM   #8
unordained
LQ Newbie
 
Registered: Nov 2003
Posts: 1

Rep: Reputation: 0
we've been using firebird under slackware for years. we use the .rpm though, and just use --nodeps when installing (since slackware doesn't keep the list of dependencies straight, or at all) and ... oh, don't forget to create /etc/rc.d/init.d before installing, since it's gonna stick a file there. (rather redhat-oriented.) other than that, i don't recall having any trouble with firebird-SS (rpm) under slackware.

granted, you wanted to use the tarballs / recompile it yourself, and this doesn't help there. sorry.
 
Old 11-30-2003, 07:57 PM   #9
mhsabado
LQ Newbie
 
Registered: Nov 2003
Posts: 13

Rep: Reputation: 0
I wish I could help but the first time I installed firebird fresh from download took me about 3 command lines and it's done using the tar. When I tried the .rpm took me a single command line (rpm -ivh fire....). I'm afraid getting into the manual might just complicate me considering the error messages encountered as you have posted. I've done this during the first time I heard of firebird.
 
Old 11-30-2003, 08:18 PM   #10
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067

Original Poster
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally posted by unordained
[e've been using firebird under slackware for years. we use the .rpm though, and just use --nodeps when installing (since slackware doesn't keep the list of dependencies straight, or at all) and ... oh, don't forget to create /etc/rc.d/init.d before installing, since it's gonna stick a file there. (rather redhat-oriented.) other than that, i don't recall having any trouble with firebird-SS (rpm) under slackware.

granted, you wanted to use the tarballs / recompile it yourself, and this doesn't help there. sorry.
Thanks, I appreciate your post, and I'll
give it a shot with your sugestions.

An extra big thanks for popping in here -
I assume you came to LQ because of the
post on Yahoo-groups? :)

I do prefer to install from source, but a
sub-optimal working solution will do for
now ;) - I'll keep you informed here.

Cheers,
Tink
 
Old 12-01-2003, 08:07 AM   #11
pcisar
LQ Newbie
 
Registered: Nov 2003
Posts: 1

Rep: Reputation: 0
> fillup/sysconfig

It's SuSE-only thing. You don't need to care about it.

> insserv in Debian?
> chkconfig in RH/MDK?

Two different methods to active/inactive initd services. relevant only for SuperServer.
 
Old 12-01-2003, 08:11 AM   #12
mbabuskov
Member
 
Registered: Nov 2003
Location: Subotica
Distribution: Slackware, Knoppix, Mandriva
Posts: 42

Rep: Reputation: 15
Re: Firebird installation/abysmal documentation :}

Quote:
Originally posted by Tinkster
Hi Gents,

for about an hour and a half I've been now trying to
make sense of firebirds (Firebird-1.0.3.972.src.tar.gz)
documentation regarding Linux, the bootkit thing
(bootkit-1.0.0.796.tar.gz) which just has more source
without any makefiles, insetad of the suggested
bootstrap version of firebird ....

FirebirdSS-1.5.0.4027-RC7.i686.tar.gz doesn't work
either ... I can't understand why this would be a
popular database engine :}

Building Firebird 1.0 versions is a hard nut to crack. The problem with it is that you already have to have a working system to build it. Why is it like that? Well, let's say that's the way Borland's developers did the thing at the time they released the source code (mid 2000), and Firebird team just left it that way.

That is fixed in 1.5, so people can easily build everything from source, but there is this problem with groupadd -r option. Some systems just don't have -r option. The issue has been discussed on firebird-devel list @ sourceforge, and it will probably be fixed in the next version. One of the arguments was that -r is an option listed in LSB documents, so it's legal to use it. I don't remember what was the final word on this, perhaps you can look at firebird-devel archives?

I do run FB 1.0 on one slack box, but it was something I did manually (copied all files from another instalation on another box), so I wouldn't recommend it.

Good luck with it.
 
Old 06-05-2005, 03:16 AM   #13
jvzsys
LQ Newbie
 
Registered: Jun 2005
Posts: 3

Rep: Reputation: 0
How do I install Firebird 1.52 on Ubuntu?

Hi
How do I install Firebird 1.52 on Ubuntu?
Classic or Super?

I found this about Firebird on
http://ubuntuforums.org/archive/index.php/t-21618.html

"Firebird can be installed by following these steps:

1. Enable universe repository (see www.ubuntuguide.org)
2. $ apt-get install firebird2-classic-server (or firebird2-super-server,
according to your needs, see Firebird web)
3. $ apt-get install firebird2-utils-classic

Then you can use the isql-fb app to create/connect to a database and execute
SQL queries.

If you need php4 support, execute
4. $ apt-get install php4-interbase

See www.firebirdsql.org for tutorials and documentation."

I have tried all sorts of combinations - nothing works.

Thx
 
Old 06-08-2005, 02:36 AM   #14
mariuz
Member
 
Registered: Nov 2003
Distribution: gentoo
Posts: 69

Rep: Reputation: 19
what doesn't work ?

more details please

the server started ?

ps awwwx | grep firebird
should give something like this

Code:
 5832 ?        S      0:00 /opt/firebird/bin/fbguard -f
 5847 ?        Sl     0:00 /opt/firebird/bin/fbserver
 
Old 06-08-2005, 08:38 AM   #15
jvzsys
LQ Newbie
 
Registered: Jun 2005
Posts: 3

Rep: Reputation: 0
Firebird on Ubuntu

What I mean is - I cannot find an install of Firebird 1.52 to download and install
Cheers

Last edited by jvzsys; 06-08-2005 at 09:44 AM.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Madrake 10.1 installation documentation lourosas Mandriva 1 03-01-2005 10:45 AM
about hpux - documentation & installation program kpachopoulos Other *NIX 1 01-25-2005 11:49 PM
a minimal installation documentation lonleyfedoraguy Debian 2 05-30-2004 08:25 PM
Mozilla Firebird Installation LinuxSeeker Linux - Software 16 02-09-2004 01:19 PM
Firebird Flash installation problems downinthemine Linux - Software 2 08-28-2003 10:19 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:16 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration