Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How do I install a OpenVPN in CentOS? Post 302785655 by TheCorporation on Tuesday 26th of March 2013 06:00:43 AM
Old 03-26-2013
How do I install a OpenVPN in CentOS?

Hi,

I have looked at different tutorials across the net on how to install a OpenVPN in Linux CentOS but I can't understand any of the instructions given.

So I typed myself some step-by-step instructions that I do understand. This is the type of simplified instructions I do understand.......

Step 1. Go into the Terminal

Step 2. Type "su" (without the quotes) then press ENTER

Step 3. Type your password (you will not be able to see it while you type) then press ENTER

Step 4. Type "yum" (without the quotes) then press ENTER

My question is what is step 5,6,7, etc?

Any help will be much appreciated as I'm really struggling to work Linux out ( I've been a Window user for 8 years.)
 

10 More Discussions You Might Find Interesting

1. Linux

X-Windows,Install Shield on CentOS

I have a fresh install of CentOS 5.2. I need to install a commercial package that uses InstallShield. Every time I run the installation program, it gives me an error that tells me it can't open an xwindows window. The system autoboots into Gnome. I open a new xterm window by typing xterm in a... (0 Replies)
Discussion started by: jeffreywpearson
0 Replies

2. Linux

Centos 5 install. Partion order

I can't control the partion order during install. For example i need. hda5 /var 1GB hda6 /opt 2GB I created them in such order but OS adjust them to hda5 /opt 2GB hda6 /var 1GB It is frustrating during install, I pretty sure I can order the partion as i like... (0 Replies)
Discussion started by: honglus
0 Replies

3. Red Hat

Questions About RHEL 6, CentOS 5.5 download and install

Hi, I have some questions about RHEL and CentOS download and installation. (1) Is RHEL6.0 x86_64 beta downloaded from Red Hat site working fine? (2) Where to download CentOS 5.5 DVD iso without using BitTorrent? (3) What are the differences between these two images - CentOS 5.5 i386 and... (6 Replies)
Discussion started by: aixlover
6 Replies

4. UNIX for Dummies Questions & Answers

Install vim on centos

i typed this command it shows -bash: up2date: command not found how to install it? how to copy the code to the VI editor when i access my server with secureCRT (1 Reply)
Discussion started by: runeveryday
1 Replies

5. Linux

How to Install and configure Jira And Confulence in Centos 5.5

Please Give me Step by step Instruction Or Video Tutorial For installing and configuring Jira And Confulence in Centos 5.5 , What are the Requirements For Installing and Configuring , wht are the Softwares need for it to work perfectly ... pls reply thanks in advance .... :wall: (1 Reply)
Discussion started by: babinlonston
1 Replies

6. Red Hat

How to install centos 5.5 using Raid In Virtualbox

Im have Oracle Virtualbox and vmware workstation How can i Add2 HDD in Vmware or Virtualbox and Install centos Using Raid Configuration Please give me Tutorial step by Step .. Thanks in Advance In Virtualbox there is SAS Hard disk So shall i Use it ? (3 Replies)
Discussion started by: babinlonston
3 Replies

7. Red Hat

During install error centos 5.8

Hi i am getting the following error while i try to install OS from my repo " unable to read group information from repositories this is a problem with the generation of your install tree " guide me any one (3 Replies)
Discussion started by: venikathir
3 Replies

8. UNIX for Dummies Questions & Answers

Can someone Help install CentOS

Hello, I'm new to this Unix OS. I need help and guide to how to install this: Server requirements / Installation OS: CentOS6 / EXT4 SWAP: 16 GB (system level) Just show me the walk through by using centos manual install. Thanks, mimic (1 Reply)
Discussion started by: mimic51
1 Replies

9. Red Hat

How to install Xrdp in Centos.?

Hi, I want to install the Xrdp in Centos for taking remote session of centos server from Windows machine. could you please help me for this ?? (6 Replies)
Discussion started by: purushottamaher
6 Replies

10. Red Hat

Cannot see disks while tryin to install CentOS 7

Cannot see disks while tryin to install CentOS 7 at IBM X3550 M3 It shows that no disk present insystem, though 2 disks inserted (using RAID controller). is ther e anything should be done so CentOS become to see disks? (6 Replies)
Discussion started by: nypreH
6 Replies
CPANPLUS::Dist::Base(3) 				User Contributed Perl Documentation				   CPANPLUS::Dist::Base(3)

NAME
CPANPLUS::Dist::Base - Base class for custom distribution classes SYNOPSIS
package CPANPLUS::Dist::MY_IMPLEMENTATION use base 'CPANPLUS::Dist::Base'; sub prepare { my $dist = shift; ### do the 'standard' things $dist->SUPER::prepare( @_ ) or return; ### do MY_IMPLEMENTATION specific things ... ### don't forget to set the status! return $dist->status->prepared( $SUCCESS ? 1 : 0 ); } DESCRIPTION
CPANPLUS::Dist::Base functions as a base class for all custom distribution implementations. It does all the mundane work CPANPLUS would have done without a custom distribution, so you can override just the parts you need to make your own implementation work. FLOW
Below is a brief outline when and in which order methods in this class are called: $Class->format_available; # can we use this class on this system? $dist->init; # set up custom accessors, etc $dist->prepare; # find/write meta information $dist->create; # write the distribution file $dist->install; # install the distribution file $dist->uninstall; # remove the distribution (OPTIONAL) METHODS
@subs = $Class->methods Returns a list of methods that this class implements that you can override. $bool = $Class->format_available This method is called when someone requests a module to be installed via the superclass. This gives you the opportunity to check if all the needed requirements to build and install this distribution have been met. For example, you might need a command line program, or a certain perl module installed to do your job. Now is the time to check. Simply return true if the request can proceed and false if it can not. The "CPANPLUS::Dist::Base" implementation always returns true. $bool = $dist->init This method is called just after the new dist object is set up and before the "prepare" method is called. This is the time to set up the object so it can be used with your class. For example, you might want to add extra accessors to the "status" object, which you might do as follows: $dist->status->mk_accessors( qw[my_implementation_accessor] ); The "status" object is implemented as an instance of the "Object::Accessor" class. Please refer to its documentation for details. Return true if the initialization was successful, and false if it was not. The "CPANPLUS::Dist::Base" implementation does not alter your object and always returns true. $bool = $dist->prepare This runs the preparation step of your distribution. This step is meant to set up the environment so the "create" step can create the actual distribution(file). A "prepare" call in the standard "ExtUtils::MakeMaker" distribution would, for example, run "perl Makefile.PL" to find the dependencies for a distribution. For a "debian" distribution, this is where you would write all the metafiles required for the "dpkg-*" tools. The "CPANPLUS::Dist::Base" implementation simply calls the underlying distribution class (Typically "CPANPLUS::Dist::MM" or "CPANPLUS::Dist::Build"). Sets "$dist->status->prepared" to the return value of this function. If you override this method, you should make sure to set this value. $bool = $dist->create This runs the creation step of your distribution. This step is meant to follow up on the "prepare" call, that set up your environment so the "create" step can create the actual distribution(file). A "create" call in the standard "ExtUtils::MakeMaker" distribution would, for example, run "make" and "make test" to build and test a distribution. For a "debian" distribution, this is where you would create the actual ".deb" file using "dpkg". The "CPANPLUS::Dist::Base" implementation simply calls the underlying distribution class (Typically "CPANPLUS::Dist::MM" or "CPANPLUS::Dist::Build"). Sets "$dist->status->dist" to the location of the created distribution. If you override this method, you should make sure to set this value. Sets "$dist->status->created" to the return value of this function. If you override this method, you should make sure to set this value. $bool = $dist->install This runs the install step of your distribution. This step is meant to follow up on the "create" call, which prepared a distribution(file) to install. A "create" call in the standard "ExtUtils::MakeMaker" distribution would, for example, run "make install" to copy the distribution files to their final destination. For a "debian" distribution, this is where you would run "dpkg --install" on the created ".deb" file. The "CPANPLUS::Dist::Base" implementation simply calls the underlying distribution class (Typically "CPANPLUS::Dist::MM" or "CPANPLUS::Dist::Build"). Sets "$dist->status->installed" to the return value of this function. If you override this method, you should make sure to set this value. $bool = $dist->uninstall This runs the uninstall step of your distribution. This step is meant to remove the distribution from the file system. A "uninstall" call in the standard "ExtUtils::MakeMaker" distribution would, for example, run "make uninstall" to remove the distribution files the file system. For a "debian" distribution, this is where you would run "dpkg --uninstall PACKAGE". The "CPANPLUS::Dist::Base" implementation simply calls the underlying distribution class (Typically "CPANPLUS::Dist::MM" or "CPANPLUS::Dist::Build"). Sets "$dist->status->uninstalled" to the return value of this function. If you override this method, you should make sure to set this value. perl v5.16.3 2013-05-20 CPANPLUS::Dist::Base(3)
All times are GMT -4. The time now is 01:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy