Sponsored Content
Top Forums UNIX for Advanced & Expert Users file //.ssh/prng_seed is not a regular file Post 30126 by penguin-friend on Thursday 17th of October 2002 05:37:57 AM
Old 10-17-2002
file //.ssh/prng_seed is not a regular file

Hi all...
On all of my solaris servers (5.5.1,5.6,5.7,5.8 and one 5.9) i get this error message:

sshd[7636]: fatal: PRNG seedfile //.ssh/prng_seed is not a regular file...

Knowing that i have no way to recompile correctly the sources, how can i fix this problem?

I'm using openssh, openssl, and egd on these servers.

Any help would be great...

I've already done some search on google, with no success...

Thanx...
penguin-friend
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

structure of regular file

hi, I am reading 'the design of the unix os' by Bach and I find the 'regular file structure' details with the 'direct and indirect blocks of the inode' difficult to understand. Thanks (2 Replies)
Discussion started by: ramyar
2 Replies

2. UNIX for Advanced & Expert Users

SSH and file prng_seed

I need some help... What use is there to the file prng_seed under Solaris? (2 Replies)
Discussion started by: penguin-friend
2 Replies

3. UNIX for Advanced & Expert Users

How to create a prng_seed file?

Hi all, I've just installed egd ssh zlib and ssl on a server: $ uname -a SunOS su214tos 5.8 Generic_108528-11 sun4d sparc SUNW,SPARCserver-1000 When i want to execute the /usr/local/sbin/sshd, i get the following: PRNG is not seeded... How do i seed the PRNG? Thanx Jason (1 Reply)
Discussion started by: penguin-friend
1 Replies

4. UNIX for Dummies Questions & Answers

Definition of a regular file

Hi there. reading the if entry from man, i get this: -f file True if file exists and is a regular file. What is exactly a regular file ? Thanks, --- 435 Gavea --- (3 Replies)
Discussion started by: 435 Gavea
3 Replies

5. UNIX for Dummies Questions & Answers

Cut file using regular expressions

I have a file with approximately 262,000 fields and I want to split it according to pairs of fields. The fields have headers and I want to create smaller files with just the columns between the fields (specified fields inclusive). For example, I just want the columns "set" and "test", with the... (3 Replies)
Discussion started by: etownbetty
3 Replies

6. Programming

Perl: How to read from a file, do regular expression and then replace the found regular expression

Hi all, How am I read a file, find the match regular expression and overwrite to the same files. open DESTINATION_FILE, "<tmptravl.dat" or die "tmptravl.dat"; open NEW_DESTINATION_FILE, ">new_tmptravl.dat" or die "new_tmptravl.dat"; while (<DESTINATION_FILE>) { # print... (1 Reply)
Discussion started by: jessy83
1 Replies

7. Shell Programming and Scripting

[solved] File type error (not a regular file)

Hi friend, i have written script as below to check the file existance. but i got error path="/k/p1100/users/jewel/Output" FILENAME=`ls -lrt $path/*HT|tail -1|cut -d "/" -f 8` if ; then echo "$FILENAME is available " chmod 755 $path/$FILENAME /usr/bin/scp... (0 Replies)
Discussion started by: Jewel
0 Replies

8. Shell Programming and Scripting

Check if file exists via ssh in ssh (nested)

I'm using redhat and have an odd issue with a nested ssh call. ssh -i ~/.ssh/transfer-key -q transfer@fserver1 ] && ssh -i ~/.ssh/transfer-key transfer@fserver1 "ssh -i ~/.ssh/sftp-key sftpin@10.0.0.1 ]" && ssh -i ~/.ssh/transfer-key transfer@fserver1 "scp -i ~/.ssh/sftp-key /home/S/outbox/*... (2 Replies)
Discussion started by: say170
2 Replies

9. Shell Programming and Scripting

Ssh cat file output into a file on local computer

Hello, I'm on a remote computer by SSH. How can I get the output of "cat file" into a file on the local computer? I cannot use scp, because it's blocked. something like: ssh root@remote_maschine "cat /file" > /locale_machine/file :rolleyes: (2 Replies)
Discussion started by: borsti007
2 Replies

10. Shell Programming and Scripting

I need help to compare file name with regular expression and do something with file

#!/bin/sh Today=date '+%Y%m%d' for file in `ls *.csv *txt` do echo "Start woprking with ${file}" if ; then do something elif ; then do something else echo "Unkniowned file name" ... (6 Replies)
Discussion started by: digioleg54
6 Replies
SSH-COPY-ID(1)						      General Commands Manual						    SSH-COPY-ID(1)

NAME
ssh-copy-id - install your public key in a remote machine's authorized_keys SYNOPSIS
ssh-copy-id [-i [identity_file]] [user@]machine DESCRIPTION
ssh-copy-id is a script that uses ssh to log into a remote machine and append the indicated identity file to that machine's ~/.ssh/autho- rized_keys file. If the -i option is given then the identity file (defaults to ~/.ssh/id_rsa.pub) is used, regardless of whether there are any keys in your ssh-agent. Otherwise, if this: ssh-add -L provides any output, it uses that in preference to the identity file. If the -i option is used, or the ssh-add produced no output, then it uses the contents of the identity file. Once it has one or more fin- gerprints (by whatever means) it uses ssh to append them to ~/.ssh/authorized_keys on the remote machine (creating the file, and directory, if necessary.) NOTES
This program does not modify the permissions of any pre-existing files or directories. Therefore, if the remote sshd has StrictModes set in its configuration, then the user's home, ~/.ssh folder, and ~/.ssh/authorized_keys file may need to have group writability disabled manu- ally, e.g. via chmod go-w ~ ~/.ssh ~/.ssh/authorized_keys on the remote machine. SEE ALSO
ssh(1), ssh-agent(1), sshd(8) OpenSSH 14 November 1999 SSH-COPY-ID(1)
All times are GMT -4. The time now is 09:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy