[Bacula-users] Setup Bacula Sun Solaris 10 SPARC

2010-07-07 Thread Koray AGAYA
Hi,

I use Sun Solaris 10 SPARC and I want to install bacula-5.0.2.tar.gz  But I
read manual and İnstall some package

SUNWbinutils,
SUNWarc,
SUNWhea,
SUNWGcc,
SUNWGnutls
SUNWGnutls-devel
SUNWGmake
SUNWgccruntime
SUNWlibgcrypt
SUNWzlib
SUNWzlibs
SUNWbinutilsS
SUNWGmakeS
SUNWlibm

SPARC/ Solaris 10 Packages http://www.sunfreeware.com/  I didint found this
package I remove head word  SUNW  and research I found several package.. But
I didnt found SUNWarc, SUNWhea, SUNWlibm Where Can I found this package Can
you help me please ?

a. How to change below ?

export
PATH=/usr/bin::/usr/ccs/bin:/etc:/usr/openwin/bin:/usr/local/bin:/usr/sfw/bin:/opt/sfw/bin:/usr/ucb:/usr/sbin

b. How to use A typical configuration command below ?

#!/bin/sh
CFLAGS=-g ./configure \
  --sbindir=$HOME/bacula/bin \
  --sysconfdir=$HOME/bacula/bin \
  --with-mysql=$HOME/mysql \
  --enable-smartalloc \
  --with-pid-dir=$HOME/bacula/bin/working \
  --with-subsys-dir=$HOME/bacula/bin/working \
  --with-working-dir=$HOME/bacula/working

c. How to compile bacula-5.0.2 ?

Have a manuel How to install bacula on Sun solaris 10 SPARC  ? Please help
me
--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Setup Bacula Sun Solaris 10 SPARC

2010-07-07 Thread Koray AGAYA
Hi,

I use Sun Solaris 10 SPARC and I want to install bacula-5.0.2.tar.gz  But I
read manual and İnstall same package

SUNWbinutils,
SUNWarc,
SUNWhea,
SUNWGcc,
SUNWGnutls
SUNWGnutls-devel
SUNWGmake
SUNWgccruntime
SUNWlibgcrypt
SUNWzlib
SUNWzlibs
SUNWbinutilsS
SUNWGmakeS
SUNWlibm

SPARC/ Solaris 10 Packages http://www.sunfreeware.com/  I didint found this
package I remove SUNW
--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Setup Bacula Sun Solaris 10 SPARC

2010-07-07 Thread Anatoly Pugachev

Koray,

please see below,

On 07.07.2010 / 11:37:39 +0300, Koray AGAYA wrote:
 Hi,
 
 I use Sun Solaris 10 SPARC and I want to install bacula-5.0.2.tar.gz  But I
 read manual and İnstall some package
 
 SUNWbinutils,
 SUNWarc,
 SUNWhea,
 SUNWGcc,
 SUNWGnutls
 SUNWGnutls-devel
 SUNWGmake
 SUNWgccruntime
 SUNWlibgcrypt
 SUNWzlib
 SUNWzlibs
 SUNWbinutilsS
 SUNWGmakeS
 SUNWlibm
 
 SPARC/ Solaris 10 Packages http://www.sunfreeware.com/  I didint found this
 package I remove head word  SUNW  and research I found several package.. But
 I didnt found SUNWarc, SUNWhea, SUNWlibm Where Can I found this package Can
 you help me please ?

most SUNW* packages are from installation media (dvd/cd) of Solaris 10.
If you don't have installation dvd/cd disks, you can download them for
free from sun.com site.


 a. How to change below ?
 
 export
 PATH=/usr/bin::/usr/ccs/bin:/etc:/usr/openwin/bin:/usr/local/bin:/usr/sfw/bin:/opt/sfw/bin:/usr/ucb:/usr/sbin

this command is for bash/sh command line shell to set your PATH
environment variable. If you're using csh, you should use 

% setenv PATH 
/usr/bin:/usr/ccs/bin:/etc:/usr/openwin/bin:/usr/local/bin:/usr/sfw/bin:/opt/sfw/bin:/usr/ucb:/usr/sbin

command.

 b. How to use A typical configuration command below ?
 
 #!/bin/sh
 CFLAGS=-g ./configure \
   --sbindir=$HOME/bacula/bin \
   --sysconfdir=$HOME/bacula/bin \
   --with-mysql=$HOME/mysql \
   --enable-smartalloc \
   --with-pid-dir=$HOME/bacula/bin/working \
   --with-subsys-dir=$HOME/bacula/bin/working \
   --with-working-dir=$HOME/bacula/working


this lines can be put into command line/batch/shell file, and
then run from the bacula source directory. This makes bacula to be
configured to be installed into $HOME/bacula directory.


 c. How to compile bacula-5.0.2 ?

after you have finished with installing needed SUNW* packages and also
with steps [a] and [b] you can compile and install bacula with 2 more
command in bacula sources directory: 

1) make
2) if make was success, make install for installation.


--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Setup Bacula Sun Solaris 10 SPARC

2010-07-07 Thread Fred
Hello,

if I can add some precisions.

Le mercredi 07 juillet 2010 11:26:22, Anatoly Pugachev a écrit :
 Koray,
 
 please see below,
 

 most SUNW* packages are from installation media (dvd/cd) of Solaris 10.
 If you don't have installation dvd/cd disks, you can download them for
 free from sun.com site.

And normally, they should have been installed i the full cluster has been 
chosed at install.

  b. How to use A typical configuration command below ?
  
  #!/bin/sh
  CFLAGS=-g ./configure \
  
--sbindir=$HOME/bacula/bin \
--sysconfdir=$HOME/bacula/bin \
--with-mysql=$HOME/mysql \
--enable-smartalloc \
--with-pid-dir=$HOME/bacula/bin/working \
--with-subsys-dir=$HOME/bacula/bin/working \
--with-working-dir=$HOME/bacula/working
 
 this lines can be put into command line/batch/shell file, and
 then run from the bacula source directory. This makes bacula to be
 configured to be installed into $HOME/bacula directory.

Personnally, I prefer puting this stuff on /usr/local or /opt/. I hate having 
systems binaries in my home.

 
  c. How to compile bacula-5.0.2 ?
 
 after you have finished with installing needed SUNW* packages and also
 with steps [a] and [b] you can compile and install bacula with 2 more
 command in bacula sources directory:
 
 1) make
 2) if make was success, make install for installation.

Beware !

My last test for building Bacula on Solaris ran into troubles because of the 
falvour of make I cast. You'll ma be facing error if you use Sun Studio's 
Compiler. This is not sure, but, be prepared.

Since, I jump into Gentoo Sparc and Bacula is building fine ;)

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users