LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-13-2005, 05:56 PM   #1
Like2Byte
LQ Newbie
 
Registered: Aug 2004
Distribution: Ubuntu 10.10, 11.04 Server, 12.04LTS
Posts: 4

Rep: Reputation: 0
Question coreutils installation and RPM management


Hi, I was trying to install MySQL as an RPM when KManager (I think it was - I'm remote at an internet cafe') told me coreutils was a needed dependency.

I ran KManager independently and it showed coreutils in my installed column. duh!

I downloaded coreutils-5.2.1 and configured and make'd everything. Then I 'make install'd (to default path (Turned out to be '/usr/local/bin'))

My original coreutils are located in '/bin'.

Now, I have some updated coreutils in the new location ('/usr/local/bin')
What do I do now?

I know I should probably re- 'make install --exec-prefix=PATH' to '/bin' - such as:
'make install --exec-prefix=/bin'

Will I bork anything doing this?
Why didn't KManager correctly detecte a default install of coreutils on 'Slackware 10.0'?

As an aside, will installing via source not update the rpm management software and, therefore, not detect when an even newer coreutils (or whatever) is installed?

Thanks in advance.

Carl C
 
Old 07-13-2005, 06:03 PM   #2
killerbob
Member
 
Registered: Oct 2004
Location: Ottawa, ON
Distribution: Slackware
Posts: 662

Rep: Reputation: 31
Quote:
Will I bork anything doing this?
Why didn't KManager correctly detecte a default install of coreutils on 'Slackware 10.0'?
In response to the first, likely.

In response to the second, because Slackware doesn't use RPM. Slackware uses Slackpackages. Go to LinuxPackages.net to download packages. You will find that the dependancies for MySQL are already satisfied on a base Slack install, and that the Slack package will probably work fine.
 
Old 07-13-2005, 08:40 PM   #3
Like2Byte
LQ Newbie
 
Registered: Aug 2004
Distribution: Ubuntu 10.10, 11.04 Server, 12.04LTS
Posts: 4

Original Poster
Rep: Reputation: 0
Slackpackages, eh?

OK. Home now.

Slackpackages, huh? Ok, thanks. I'll look it up.

FYI:

Also, I ran the 'which' command from the . dir and it informs me that everything is pointing to '/usr/local/bin'.

Guess I'll see what happens over time.

Thanks for the info on the slackpackages, again.
 
Old 07-13-2005, 08:48 PM   #4
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
Just for the records, MySQL comes with Slackware by default, if you did a full install it's already installed.
 
Old 07-13-2005, 09:12 PM   #5
Like2Byte
LQ Newbie
 
Registered: Aug 2004
Distribution: Ubuntu 10.10, 11.04 Server, 12.04LTS
Posts: 4

Original Poster
Rep: Reputation: 0
Yup, I knew MySQL was installed. I wanted to install a newer version. I had already installed, via source build (in a different dir than the existing, vanilla-install copy), MySQL 4.1 but it was nagging at me that there was another install location on the disk.

I've been reading "MySQL in a Nutshell" by O'Reilly and they suggestted the use of an RPM. I thought, "Why Not. I've never used RPM before anyway." Thanks to killerbob, now I know why. heh!

Anyway, I used KManager to un-install MySQL then I backed up the entire MySQL Directory of the source build I made and tried the RPM usage and now, here we are.

OH, Why didn't I start that logbook like so many sites said I should have?
 
Old 07-13-2005, 09:34 PM   #6
killerbob
Member
 
Registered: Oct 2004
Location: Ottawa, ON
Distribution: Slackware
Posts: 662

Rep: Reputation: 31
In future, if you want to upgrade a package to the new version, use "upgradepkg".

Say the original package is something innocuous, like "xfce-4.2.0-i486-3.tgz". That's actually the XFCE base package from Slack 10.1. Now, I want to upgrade it to "xfce-4.2.2-i486-1.tgz", which is the version in Slack-current. In order to upgrade, I do not need to first uninstall my existing xfce.

Instead, I download the new package, and install it with "upgradepkg xfce-4.2.2-i486-1.tgz". upgradepkg will install the new package, overwriting everything, and then check the install log against the list of files added by the original package. It then removes any files that were in the original package, but are not in the new one.

This makes it really easy and really quick to upgrade a package.
 
Old 07-13-2005, 09:48 PM   #7
MMYoung
Member
 
Registered: Apr 2004
Location: Arkansas
Distribution: Ubuntu 8.10
Posts: 365

Rep: Reputation: 30
Re: coreutils installation and RPM management

Quote:
Originally posted by Like2Byte
I know I should probably re- 'make install --exec-prefix=PATH' to '/bin' - such as:
'make install --exec-prefix=/bin'
Actually you do that during the configure stage. The correct settings are:
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var

Also if you keep your "compile" directory (where you ran ./configure, make, and make install) and you "bork" something when you install it, sometimes you can cd back to the "compile" directory and type "make uninstall" (or something similar read the README or INSTALL file) and it will uninstall the files (for the most part).

The best way to handle software management is by using slackpacks. Then, as another poster said, you can use upgradepkg, installpkg, and removepkg to take care of all your software.

Later,
MMYoung
 
Old 07-14-2005, 09:24 AM   #8
Like2Byte
LQ Newbie
 
Registered: Aug 2004
Distribution: Ubuntu 10.10, 11.04 Server, 12.04LTS
Posts: 4

Original Poster
Rep: Reputation: 0
Re: Re: coreutils installation and RPM management

Quote:
Originally posted by MMYoung
Actually you do that during the configure stage. The correct settings are:
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
Yeah, I reread the installation chapter this morning and found this.


Quote:
Originally posted by MMYoung
Also if you keep your "compile" directory (where you ran ./configure, make, and make install) and you "bork" something when you install it, sometimes you can cd back to the "compile" directory and type "make uninstall" (or something similar read the README or INSTALL file) and it will uninstall the files (for the most part).

The best way to handle software management is by using slackpacks. Then, as another poster said, you can use upgradepkg, installpkg, and removepkg to take care of all your software.
Quote:
Originally posted by killerbob
[...]download the new package, and install it with "upgradepkg xfce-4.2.2-i486-1.tgz". upgradepkg will install the new package, overwriting everything, and then check the install log against the list of files added by the original package. It then removes any files that were in the original package, but are not in the new one.
I didn't even know these existed. The two slack boxes I have set up are not connected to the net*. I guess I can download the packages I need and command line install the files via the upgradepkg, installpkg and removepkg.

Thanks MMYoung and killerbob,

Carl

------------------------------------
Disclaimer--->Boring stuff below

*They're all connected together via a WRT54G(wired - the wireless is for my LT. The WRT54G is locked down tight using AES, IP Filtering and no default p/w's + other junk). My servers serve webpages; though, I'm still trying to get Samba set up and working. They're test machines so I can learn.

To get on the net at home I use my mother's computer running a 56k Modem (I live in the stone ages). I have to run to the local Internet cafe' to download the truely massive stuff - you know, greater than 6 Meg - so I'm kind of limited in how fast I can get things done. I'll usually wait until I need more than a few files so I can grab all the files at once instead of just grabbing a few at a time.
 
Old 07-14-2005, 10:03 AM   #9
MMYoung
Member
 
Registered: Apr 2004
Location: Arkansas
Distribution: Ubuntu 8.10
Posts: 365

Rep: Reputation: 30
No problem, glad to help. If you want a good guide to creating your own slackpacks you can find all kinds of really good information from LinuxPackages. They have several HOWTO's on their site that I used to learn "how to" make packages the RIGHT way. You could also use checkinstall but it is no longer included on the Slackware CD's (at least it ain't on my CD's from Slackware). You would have to download it from HERE.

Later,
MMYoung
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Best book on RPM management ravikumarG Linux - Software 1 05-02-2005 08:07 AM
writing a RPM management application eantoranz Programming 10 01-21-2004 12:18 AM
RH9 RPM Management i58 Red Hat 5 09-21-2003 08:56 PM
rpm management on redhat linux 9 Baklan Linux - Newbie 10 07-10-2003 05:10 PM
rpm management nildarb Linux - Software 5 06-29-2003 02:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:37 AM.

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