- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- installing the perl-Tk module
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 02:29 AM
тАО12-19-2003 02:29 AM
installing the perl-Tk module
Got RH 2.1 AS on Dell PE1650.
I am working on getting Bastille setup and running on this system but I am having a hard time loading the required module - the perl-Tk module.
Have obtained the perl-Tk-800.024-2.i386.rpm from the rpmfind site. When I do the rpm install (rpm -ivh ) is errors out saying that failed dependencies libc.so.6 (GLIBC_2.3) is needed by perl-Tk.
When I do the rpm -ivh for the glibc-2.2.4-26.i386.rpm it errors out and says "file <> from install of glibc-2.2.4-26 conflicts with file from package glibc-2.2.4-26."
My expectation would be "the package is already installed" which it is.
How can I get around this seemingly endless loop?
Many thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 02:32 AM
тАО12-19-2003 02:32 AM
Re: installing the perl-Tk module
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 02:39 AM
тАО12-19-2003 02:39 AM
Re: installing the perl-Tk module
1) Research on Bastille says this module works
2) On CPAN there are numerous perl-Tk modules, which one to choose?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 02:44 AM
тАО12-19-2003 02:44 AM
Re: installing the perl-Tk module
Did you try installing it with Uvh ?
Probaly the answer is yes ?
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 02:53 AM
тАО12-19-2003 02:53 AM
Re: installing the perl-Tk module
I see your point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 03:03 AM
тАО12-19-2003 03:03 AM
Re: installing the perl-Tk module
Perhaps you could compare ?
http://search.cpan.org/author/NI-S/Tk-800.024/
to find this i did a rpm -qRvvi perl-Tk
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 03:03 AM
тАО12-19-2003 03:03 AM
Re: installing the perl-Tk module
Did download and install the Bundle::Tk from CPAN, again no success.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 03:22 AM
тАО12-19-2003 03:22 AM
Re: installing the perl-Tk module
get the latest stable Perl-Tk from CPAN.
Then follow the normal steps:
perl Makefile.PL
make
make test
make install
This should leave you with a working perl Tk linked againt your current glibc.
I have done this often on my Linux systems without running into problems.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2003 11:01 AM
тАО12-19-2003 11:01 AM
Re: installing the perl-Tk module
Two choices, one: grab the source and compile yourself as has been previously mentioned.
two: grab the source RPM, and rebuild it using 'rpm --rebuild perl-Tk-800.024-2.src.rpm'.
This should compile new RPM's (to end up in /usr/src/redhat/RPMS/i386/) that will work on your specific environment.
At worst, you may need to install the src rpm, and tweak the dependancy list in '/usr/src/redhat/SPECS/perl-Tk.spec' (or whatever it calls it's self). Look at the version numbers after the 'Requires' lines.
To rebuild after you've tweaked, you have to issue a different command, 'rpm -bb /usr/src/redhat/SPECS/perl-Tk.spec', but the built RPM's end up in the same place.