Sponsored Content
Full Discussion: SSH and config.....
Top Forums UNIX for Advanced & Expert Users SSH and config..... Post 12774 by PxT on Monday 7th of January 2002 12:52:38 PM
Old 01-07-2002
Both of these files should be included in your SSH distribution. The ssh_prng_cmds file contains commands which can be run to gather entropy. You should not try to create it by hand, rather copy it from the distribution. "make install" should create both of these for you if you are installing from the source tarball.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

SSh install and config

Hi all........... I work for a big french car manufacturer. I'm supposed to put up a secure protocol, that means ssh. I'm looking for free ssh codes and binaries, and the install and config of it... Any help would be great... :confused: :confused: :confused: Thanx Jason (3 Replies)
Discussion started by: a_new_admin
3 Replies

2. UNIX for Advanced & Expert Users

Editing MySQL config through ssh ?

I need a smal "how to" regarding editing mysql configuration on a unix server. Thanks in advance. (2 Replies)
Discussion started by: Denis.R
2 Replies

3. Solaris

network config problem - how to set the server for others to ssh without password

Hi, I want to ssh the linux server without inputting the password, how can I config this server? Thanks in advance! (1 Reply)
Discussion started by: GCTEII
1 Replies

4. UNIX for Dummies Questions & Answers

Pls help me urgently.... Regarding Putty SSH Config.

I have downloaded the Putty SSH configuration. I have entered my Host name as illinois.engr.sjsu.edu and i am trying to save that. But i am unable to save. Also i opened the session and entered my log in name But it says using keyboard interactive authentication.I am not able to get into $ ... (1 Reply)
Discussion started by: VamsiVasili
1 Replies

5. Shell Programming and Scripting

parsing config file to create new config files

Hi, I want to use a config file as the base file and parse over the values of country and city parameters in the config file and generate separate config files as explained below. I will be using the config file as mentioned below: (config.txt) country:a,b city:1,2 type:b1... (1 Reply)
Discussion started by: clazzic
1 Replies

6. Shell Programming and Scripting

ssh config file

Hello all I have question regarding the id_dsa keys and authorized_keys file in .ssh directory. I know if we try to SFTP, id_dsa.pub file on server1 will be verified with contents of authorized_keys on other server and SFTP will happen once verification passes. No i want to use id_dsa1.pub... (1 Reply)
Discussion started by: vasuarjula
1 Replies

7. Shell Programming and Scripting

Shell script that will compare two config files and produce 2 outputs 1)actual config file 2)report

Hi I am new to shell scripting. There is a requirement to write a shell script to meet follwing needs.Prompt reply shall be highly appreciated. script that will compare two config files and produce 2 outputs - actual config file and a report indicating changes made. OS :Susi linux ver 10.3. ... (4 Replies)
Discussion started by: muraliinfy04
4 Replies

8. Solaris

Can't login using ssh after IPMP config.

Dear All, After configuring IPMP in 2 fresh Servers (T5520 and T2000) I can't login in any of them using SSH, I can login by serial console then I had to enable Telnet to access. IPMP works fine. This is the error in /var/adm/messages: sshd: Failed password for lvalle from 172.28.12.95 port... (0 Replies)
Discussion started by: Luis Valle
0 Replies

9. Shell Programming and Scripting

Ssh config file different location

I'm trying use 'sed' to change a line on sshd_config file. But the problem is sshd_config file can be two different locations.(eg: /etc/ssh/sshd_config or /usr/local/ssh/sshd_config) Was wondering how to write a shell script to search or mention the sshd_config location? (3 Replies)
Discussion started by: pjeedu2247
3 Replies

10. Red Hat

Apache virtual host config vs global config problem

Hi folks, I am trying to configure Apache webserver and also a virtual host inside this webserver. For Global server config: /var/www/html/index.html For virtual host config: /var/www/virtual/index.html Both client10 & www10 are pointing to 192.168.122.10 IP address. BUT, MY... (1 Reply)
Discussion started by: freebird8z
1 Replies
Dist::Zilla::Dist::Builder(3pm) 			User Contributed Perl Documentation			   Dist::Zilla::Dist::Builder(3pm)

NAME
Dist::Zilla::Dist::Builder - dist zilla subclass for building dists VERSION
version 4.300020 ATTRIBUTES
built_in This is the Path::Class::Dir, if any, in which the dist has been built. METHODS
from_config my $zilla = Dist::Zilla->from_config(\%arg); This routine returns a new Zilla from the configuration in the current working directory. This method should not be relied upon, yet. Its semantics are certain to change. Valid arguments are: config_class - the class to use to read the config default: Dist::Zilla::MVP::Reader::Finder build_in $zilla->build_in($root); This method builds the distribution in the given directory. If no directory name is given, it defaults to DistName-Version. If the distribution has already been built, an exception will be thrown. build This method just calls "build_in" with no arguments. It gets you the default behavior without the weird-looking formulation of "build_in" with no object for the preposition! ensure_built_in $zilla->ensure_built_in($root); This method behaves like "build_in", but if the dist is already built in $root (or the default root, if no root is given), no exception is raised. ensure_built_in This method just calls "ensure_built_in" with no arguments. It gets you the default behavior without the weird-looking formulation of "ensure_built_in" with no object for the preposition! dist_basename my $basename = $zilla->dist_basename; This method will return the dist's basename (e.g. "Dist-Name-1.01". The basename is used as the top-level directory in the tarball. It does not include "-TRIAL", even if building a trial dist. archive_filename my $tarball = $zilla->archive_filename; This method will return the filename (e.g. "Dist-Name-1.01.tar.gz") of the tarball of this dist. It will include "-TRIAL" if building a trial dist. The tarball might not exist. build_archive $zilla->build_archive; This method will ensure that the dist has been built, and will then build a tarball of the build directory in the current directory. release $zilla->release; This method releases the distribution, probably by uploading it to the CPAN. The actual effects of this method (as with most of the methods) is determined by the loaded plugins. clean This method removes temporary files and directories suspected to have been produced by the Dist::Zilla build process. Specifically, it deletes the .build directory and any entity that starts with the dist name and a hyphen, like matching the glob "Your-Dist-*". install $zilla->install( \%arg ); This method installs the distribution locally. The distribution will be built in a temporary subdirectory, then the process will change directory to that subdir and an installer will be run. Valid arguments are: install_command - the command to run in the subdir to install the dist default (roughly): $^X -MCPAN -einstall . this argument should be an arrayref test $zilla->test; This method builds a new copy of the distribution and tests it using "run_tests_in". run_tests_in my $error = $zilla->run_tests_in($directory); This method runs the tests in $directory (a Path::Class::Dir), which must contain an already-built copy of the distribution. It will throw an exception if there are test failures. It does not set any of the *_TESTING environment variables, nor does it clean up $directory afterwards. run_in_build $zilla->run_in_build( @cmd ); This method makes a temporary directory, builds the distribution there, executes the dist's first BuildRunner, and then runs the given command in the build directory. If the command exits non-zero, the directory will be left in place. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-21 Dist::Zilla::Dist::Builder(3pm)
All times are GMT -4. The time now is 10:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy