LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 07-30-2002, 04:48 AM   #16
Mik
Senior Member
 
Registered: Dec 2001
Location: The Netherlands
Distribution: Ubuntu
Posts: 1,316

Rep: Reputation: 47

I just did a build/install of openssl-0.9.6d on a 486 75mhz 16mb ram. The whole config + make + install process took 1h 43m 38s.
Ofcourse the machine wasn't doing a lot besides the build. Just serving a few web pages and doing NAT for a few computers.
It does have an LFS install on it and I've only got the minimal stuff running, that might make quite a difference.
Are you running XWindows on that machine? It's probably really low on resources and swapping memory a lot if it takes that long.
 
Old 07-30-2002, 07:50 AM   #17
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
I downloaded to files for Openssl....the program and the engine.
What is the difference and which one should I compile/install first?
 
Old 07-30-2002, 08:01 AM   #18
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
No...Its running telnet and samba..but without alot of use...on runlevel 3 (the only thing I like about the GUI is the neat screen saver!)
 
Old 07-30-2002, 08:11 AM   #19
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
From openssl FAQ:
Quote:
6. What is an 'engine' version?

With version 0.9.6 OpenSSL was extended to interface to external crypto hardware. This was realized in a special release '0.9.6-engine'. With version 0.9.7 (not yet released) the changes were merged into the main development line, so that the special release is no longer necessary.
Most people are using the second version, I mean "non-engine".
 
Old 07-30-2002, 08:17 AM   #20
Mik
Senior Member
 
Registered: Dec 2001
Location: The Netherlands
Distribution: Ubuntu
Posts: 1,316

Rep: Reputation: 47
You don't need the engine. Just get openssl-0.9.6e.tar.gz , since 0.9.7 is still beta.

You really should look into speeding up your system if it isn't running anything and still going that slow. You should be able to get a lot more out of it.
 
Old 07-30-2002, 03:34 PM   #21
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
Done...Ive configured and installed openssl and openssh
I also made my server key

Now,,, In RH 7.2, I go into /etc/xinet.d and enable the service.

How do I check if it is installed (its not through rpm).

Do I have to add a line for the service in /etc/inetd.conf?

I cant find my sshd! (its supposed to be in /etc/rc.d/init.d !)

Did i FooBarr my install somehow?
(Nothing noted in logs)

How do I "turn on" openssh in RH 6.2?


Last edited by chosmer; 07-30-2002 at 03:56 PM.
 
Old 07-31-2002, 04:13 AM   #22
Mik
Senior Member
 
Registered: Dec 2001
Location: The Netherlands
Distribution: Ubuntu
Posts: 1,316

Rep: Reputation: 47
Well you have several options on how to run it. You said you added it to xinetd. In that case all you would need to do is restart xinetd. Usually something like '/etc/init.d/xinetd restart' should work. You can check if it's listening on the right port by running the command 'netstat -lt'.

You don't need the file /etc/init.d/sshd because you are starting it through xinetd. You don't need to add any lines to /etc/inetd.conf either. If you are using xinetd then you shouldn't even need that file because xinetd replaces the older inetd. But since you are using redhat 6.2 it might be possible that you are still using inetd instead. In that case you should be adding the entry in inetd.conf and not in the xinet.d directory.
 
Old 07-31-2002, 07:11 AM   #23
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
I understand that .. (Im running 6.2) ... but I cant find sshd (it should be in the /etc/rc.d/init.d directory (shouldnt it?)

Could It be that I installed it in the wrong place (/tmp) ?
 
Old 07-31-2002, 08:24 AM   #24
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
I found the *#% rpm for ssh...for 6.2 here:
http://mirrors.sunsite.dk/cryptoarch...dhat-6.2-i386/

it installed like a dream...very easy.
I see sshd in my /etc/rc.d/init.d ! whoo hoo!

And....it works!

Last edited by chosmer; 07-31-2002 at 08:31 AM.
 
Old 07-31-2002, 08:45 AM   #25
SkahlaN355A
LQ Newbie
 
Registered: Jul 2002
Distribution: homebrew
Posts: 5

Rep: Reputation: 0
blanket statements are not always a good thing:

acidkewpie wrote:

just get a newer version. always a good idea anyway

unfortunately in the annals of linux history, programs do not ALWAYS improve in terms of stability or security
 
Old 07-31-2002, 08:59 AM   #26
Mik
Senior Member
 
Registered: Dec 2001
Location: The Netherlands
Distribution: Ubuntu
Posts: 1,316

Rep: Reputation: 47
Glad you got it working. But just to complete the answer on why sshd is not there.

Normally if you install from source this is a step you would do yourself. Not every distribution uses the SysV method of starting up services. So it's up to the distribution how the program gets started, not up to the creator of the program. Usually in the /etc/init.d directory there should be a skeleton file which you can copy and then modify a few lines so you can easily add a new service.
When you install an rpm it usually has been built for a specific distro so it includes all the right files for that distro that's why the sshd file was present after installing the rpm.

The only disadvantage of that rpm is that it is probably really old. There have been several important updates to openssh, which might make it worth it to still try to install the newer version.

Last edited by Mik; 07-31-2002 at 09:01 AM.
 
Old 07-31-2002, 09:25 AM   #27
chosmer
Member
 
Registered: Feb 2002
Location: Vermont
Distribution: Fedora Cores
Posts: 39

Original Poster
Rep: Reputation: 15
That sounds right. Installing from the RPM does alot of the heavy lifting for you. Im now a little gun shy about compiling and installing from the source....because it took so long, and even after that I couldnt locate or configure the files the way Im used to doing in RH.

When you compile and install, what directory do you usually compile in, and what directory do you install into?
 
Old 07-31-2002, 01:58 PM   #28
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Quote:
Originally posted by chosmer
I understand that .. (Im running 6.2) ... but I cant find sshd (it should be in the /etc/rc.d/init.d directory (shouldnt it?)

Could It be that I installed it in the wrong place (/tmp) ?
Your sshd is probably in /usr/local/sbin (or /usr/local/bin, I don't remember exactly).
 
Old 08-15-2002, 06:02 PM   #29
concoran
Member
 
Registered: Jun 2001
Location: 28N,82W
Distribution: XP,Ubuntu 9
Posts: 473

Rep: Reputation: 30
How to compile openssl client and engines?
is it the same:
./configure
make
make install.
??
 
Old 08-17-2002, 06:41 PM   #30
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Yes, the standard way.
./configure
make
make install
 
  


Reply



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
ssh-agent, ssh-add and ssh-keygen AND CVS raylpc Linux - General 2 11-19-2008 02:50 AM
why gnome is not included in 10.2 amer_58 Slackware 16 11-03-2005 05:50 PM
Javac not included? k1ll3r_x Slackware 8 08-21-2005 07:30 AM
Apache included? carlosinfl Debian 1 10-14-2004 05:56 PM
What distro has all these included? kromatic Linux - General 2 07-17-2004 05:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 06:20 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