Packages installations on my servor


 
Thread Tools Search this Thread
Operating Systems Solaris Packages installations on my servor
# 1  
Old 03-17-2008
Packages installations on my servor

Hello everybody,

I'd like to install several important packages on my servor like for instance, man pages package..
I found a .tar.gz package of man pages. So, after to do "gtar zxvf name_of_file.tar.gz" I can access on the folder "name_of_file" (by cd name_of_file). Then, I read on my readme text file, I have to do

* make
* make install

But when I did it, it didn't work :

mkdir not_installed
mkdir: Failed to make directory "not_installed"; File exists
make: [screen] Error 2 (ignored)
for i in man?/*; do \
if [ /usr/share/man/"$i" -nt "$i" ]; then \
cmp -s /usr/share/man/"$i" "$i" > /dev/null 2>&1; \
if [ "$?" != 0 ]; then mv "$i" not_installed; fi; \
fi; \
done
/bin/sh: test: unknown operator -nt
make: *** [screen] Error 1

I have a similary problem with the librairie date :: calc from Perl... After reading the instructions, I did perl Makefile.PL, it seems working but when I did make, the following error appears :

cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO -xO3 -xspace -xildoff -DVERSION=\"5.2\" -DXS_VERSION=\"5.2\" -KPIC "-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE" Calc.c
/bin/sh: cc: not found
make: *** [Calc.o] Error 1

I've installed before the following package "libgcc-3.4.6-sol10-sparc-local" et "gcc-3.4.6-sol10-sparc-local"...

Thank you a lot for all informations you could give me. Smilie

George
# 2  
Old 03-17-2008
When compiling things you could run in to all kind of problems that can take much time to solve if your not experienced with compiling things on Solaris.

Its much easier to try and download what you want in pkg format (Suns package format)

You could take a look at www.sunfreeware,com for binary packages.

you can install these packages with the pkgadd command.
# 3  
Old 03-18-2008
I agree with you... I installed my previous packages on this site for binary packages.
Unfortunatly, the man pages package is not available on this site.. Smilie I did a lot of search to find One file! in tar.gz... I have no choice... Maybe someone knows an other site where I can find the man pages package?? Smilie
# 4  
Old 03-18-2008
The man pages are there, in /usr/local/man, and you need to add /usr/local/bin to your path.
# 5  
Old 03-18-2008
When I installed my servor, the man pages was not installed... So the directory /usr/local/man is empty...
I need to find this package by an other way.
By the way, I add /usr/local/bin to my path... Thank you for your help. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding all Oracle SW installations on a host

Hi. I'm trying to find the best way to locate the latest version of Oracle on a Linux host. There could be multiple SW installs or there could be none. It could be a client or a full RDBMS installation. I need to find and set the environment in order to run the sqlplus binary. Rather than just... (14 Replies)
Discussion started by: user052009
14 Replies

2. Slackware

Find Slackware Packages - packages.acl.org.ua

Hi! Let me introduce a project for find and download Slackware packages and browse Slackware repositories. The site provides following features: * Large, daily updated database with RPM, DEB, TGZ, TXZ packages for well-known repositories of the Slackware, Fedora, CentOS, RHEL, Debian,... (2 Replies)
Discussion started by: lystor
2 Replies

3. Windows & DOS: Issues & Discussions

Remove lately made installations in Cygwin

I have installed lots of packets to try emacs with X11 in Cygwin. How can I restore to the point before that installation, without have to search, select and remove every single package on my own? Is there a function to remove lately installations easily? (2 Replies)
Discussion started by: Menedas
2 Replies

4. AIX

Automated Patch Installations in AIX

Hi Guys, I'm looking out to make automation of AIX patch installation and Report Generation... ANy suggestions or idea's welcome (8 Replies)
Discussion started by: kkeng808
8 Replies

5. UNIX and Linux Applications

Configuring firefox for mass installations

We have been looking into the possibility of configuring firefox upon installation for a common desktop environment for all users. For instance we want the font to be sans-serif 12 points throughout (preferences menu item), a standard set of plugins to be installed (add ons menu item) and some... (3 Replies)
Discussion started by: figaro
3 Replies

6. HP-UX

Multiple Perl installations on HP-UX

This will undoubtedly seem like a problem that should be easily resolved but... We are having some 'issues' getting multiple versions of Perl installed on our HP-UX servers (11.11 & 11.23). Now, I'm not a Sys Admin but I believe the reason behind this is that the Perl installation which comes... (2 Replies)
Discussion started by: Macer
2 Replies

7. UNIX for Dummies Questions & Answers

find command to detect installations

Hi I'm wondering how I can find all the files which were installed on certain date? For example: I'm looking for alle the files which were installed on the 11.09.06 on the system. Does somebody know how to do this? Thanks Reto (2 Replies)
Discussion started by: goldenglobe
2 Replies

8. Linux

external dvdrw installations

Hello all, Please can someone assist? I am attempting to install an external dvdrw on fedora 6. I attach the dvdrw device to the USB port and run dmesg: scsi2 : SCSI emulation for USB Mass Storage devices usb-storage: device found at 4 usb-storage: waiting for device to settle before... (0 Replies)
Discussion started by: chlawren
0 Replies

9. Solaris

Network Installations of Solaris

First off, I'm pretty new to Solaris, although I know Windows very well. I have a mixed Wintel, Linux and SPARC/Solaris environment and am looknig for a way to make short work of installing Solaris. I know there is a network booting option and there are the WebStart (configurable) and JumpStart... (1 Reply)
Discussion started by: BeekerC
1 Replies
Login or Register to Ask a Question