Current time: 04-23-2024, 09:05 PM Hello There, Guest! (LoginRegister)


Post Reply 
[HowTo] fedora 7 full install script
Author Message
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #21
RE: [HowTo] fedora 7 full install script
quick question about this part:

Quote:echo \*************************
echo
echo Change:
echo myhostname = \<servername\>
echo mydomain = \<domain\>
echo
read -n 1 -p 'Press any key to continue ......'

vi /etc/postfix/main.cf

the part: echo myhostname = <servername>, echo mydomain = <domain>

do i litterally type that, or is it fill in the servername etc
(This post was last modified: 10-16-2007 05:31 AM by wb6vpm.)
10-15-2007 01:13 PM
Visit this user's website Find all posts by this user Quote this message in a reply
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #22
RE: [HowTo] fedora 7 full install script
still having errors


Attached File(s)
.zip  install-spcp-log.zip (Size: 31.94 KB / Downloads: 1)
10-16-2007 05:30 AM
Visit this user's website Find all posts by this user Quote this message in a reply
graywolf Offline
Junior Member
*

Posts: 43
Joined: Sep 2007
Reputation: 1
Post: #23
RE: [HowTo] fedora 7 full install script
1. When the vi editor opens go to the listed setting and change them to your server name hostname as per the intructions

2.
Code:
-- cpan2rpm - Ver: 2.028 --
Upgrade check
Fetch: HTTP

-- module: http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz --
Retrieving URL
Metadata retrieval
Tarball extraction: [/usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz]

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors
system tar -x --directory /tmp/VwAWfgTb30 -z -f /usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz failed: 512 at /usr/bin/cpan2rpm line 1256.
means that its failing to install and im not sure why

before you run the script again try
Code:
yum -y install cpan2rpm
cpan2rpm -i --no-sign http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz

then re run the script
and let me know
10-16-2007 06:27 AM
Find all posts by this user Quote this message in a reply
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #24
RE: [HowTo] fedora 7 full install script
[root@www ~]# cpan2rpm -i --no-sign http://search.cpan.org/CPAN/authors/id/P....07.tar.gz

-- cpan2rpm - Ver: 2.028 --
Upgrade check
Fetch: HTTP

-- module: http://search.cpan.org/CPAN/authors/id/P....07.tar.gz --
Metadata retrieval
Tarball extraction: [/usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz]

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors
system tar -x --directory /tmp/Q41Q0xu5KU -z -f /usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz failed: 512 at /usr/bin/cpan2rpm line 1256.
-- Done --
[root@www ~]#
10-16-2007 07:27 AM
Visit this user's website Find all posts by this user Quote this message in a reply
graywolf Offline
Junior Member
*

Posts: 43
Joined: Sep 2007
Reputation: 1
Post: #25
RE: [HowTo] fedora 7 full install script
try

Code:
wget http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz
tar zxvf Term-ReadPassword-0.07.tar.gz
cd Term-ReadPassword-0.07  
perl Makefile.PL
make && make install

then tell me what happens
10-16-2007 08:57 AM
Find all posts by this user Quote this message in a reply
graywolf Offline
Junior Member
*

Posts: 43
Joined: Sep 2007
Reputation: 1
Post: #26
RE: [HowTo] fedora 7 full install script
do this

Code:
cd /usr/src/redhat/SOURCES/
if it dosent exist create it

Code:
cd /
mkdir usr
cd usr
mkdir src
cd src
mkdir redhat
cd redhat
mkdir SOURCES
cd SOURCES
cpan2rpm -i --no-sign http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz
ls




then tell me what happens
10-16-2007 09:03 AM
Find all posts by this user Quote this message in a reply
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #27
RE: [HowTo] fedora 7 full install script
graywolf Wrote:do this

Code:
cd /usr/src/redhat/SOURCES/
if it dosent exist create it

Code:
cd /
mkdir usr
cd usr
mkdir src
cd src
mkdir redhat
cd redhat
mkdir SOURCES
cd SOURCES
cpan2rpm -i --no-sign http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz
ls




then tell me what happens
[root@www SOURCES]# cpan2rpm -i --no-sign http://search.cpan.org/CPAN/authors/id/P....07.tar.gz

-- cpan2rpm - Ver: 2.028 --
Upgrade check
Fetch: HTTP

-- module: http://search.cpan.org/CPAN/authors/id/P....07.tar.gz --
Metadata retrieval
Tarball extraction: [/usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz]

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors
system tar -x --directory /tmp/hD3kOzMih0 -z -f /usr/src/redhat/SOURCES/Term-ReadPassword-0.07.tar.gz failed: 512 at /usr/bin/cpan2rpm line 1256.
-- Done --
[root@www SOURCES]#
(This post was last modified: 10-17-2007 06:33 AM by wb6vpm.)
10-17-2007 06:31 AM
Visit this user's website Find all posts by this user Quote this message in a reply
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #28
RE: [HowTo] fedora 7 full install script
graywolf Wrote:try

Code:
wget http://search.cpan.org/CPAN/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz
tar zxvf Term-ReadPassword-0.07.tar.gz
cd Term-ReadPassword-0.07  
perl Makefile.PL
make && make install

then tell me what happens

[root@www ~]# wget http://search.cpan.org/CPAN/authors/id/P....07.tar.gz
--13:34:00-- http://search.cpan.org/CPAN/authors/id/P....07.tar.gz
=> `Term-ReadPassword-0.07.tar.gz'
Resolving search.cpan.org... 84.45.68.23
Connecting to search.cpan.org|84.45.68.23|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://ftp.epix.net/CPAN/authors/id/P/PH....07.tar.gz [following]
--13:34:00-- http://ftp.epix.net/CPAN/authors/id/P/PH....07.tar.gz
=> `Term-ReadPassword-0.07.tar.gz'
Resolving http://ftp.epix.net... 199.224.117.32
Connecting to http://ftp.epix.net|199.224.117.32|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6,735 (6.6K) [application/x-tar]

100%[====================================>] 6,735 --.--K/s

13:34:01 (77.47 KB/s) - `Term-ReadPassword-0.07.tar.gz' saved [6735/6735]

[root@www ~]# tar zxvf Term-ReadPassword-0.07.tar.gz
Term-ReadPassword-0.07/
Term-ReadPassword-0.07/Changes
Term-ReadPassword-0.07/Makefile.PL
Term-ReadPassword-0.07/MANIFEST
Term-ReadPassword-0.07/META.yml
Term-ReadPassword-0.07/README
Term-ReadPassword-0.07/ReadPassword.pm
Term-ReadPassword-0.07/t/
Term-ReadPassword-0.07/t/1_basics.t
Term-ReadPassword-0.07/t/2_interactive.t
[root@www ~]# cd Term-ReadPassword-0.07
[root@www Term-ReadPassword-0.07]# perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Term::ReadPassword
[root@www Term-ReadPassword-0.07]# make && make install
cp ReadPassword.pm blib/lib/Term/ReadPassword.pm
Manifying blib/man3/Term::ReadPassword.3pm
Installing /usr/lib/perl5/site_perl/5.8.8/Term/ReadPassword.pm
Installing /usr/share/man/man3/Term::ReadPassword.3pm
Writing /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/Term/ReadPassword/.packlist
Appending installation info to /usr/lib/perl5/5.8.8/i386-linux-thread-multi/perllocal.pod
[root@www Term-ReadPassword-0.07]#
10-17-2007 06:34 AM
Visit this user's website Find all posts by this user Quote this message in a reply
wb6vpm Offline
Junior Member
*

Posts: 80
Joined: Oct 2007
Reputation: 0
Post: #29
RE: [HowTo] fedora 7 full install script
ok, got it in, when i try to get into it however, i get:

Duplicate entry 'npaskn9nv9nl2t00vicfbginh2' for key 1
10-17-2007 07:01 AM
Visit this user's website Find all posts by this user Quote this message in a reply
graywolf Offline
Junior Member
*

Posts: 43
Joined: Sep 2007
Reputation: 1
Post: #30
RE: [HowTo] fedora 7 full install script
looks like the database is holding onto the session key set/check the phptemp dir

Code:
chmod 777 /var/www/ispcp/gui/phptmp
chown apache:apache /var/www/ispcp/gui/tools/webmail/data

if you have a mysql frontend connect to the database and remove the record that matches the session key
10-17-2007 08:53 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)