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
SYSCONFTOOL(1)							    sysconftool 						    SYSCONFTOOL(1)

NAME
sysconftool - install configuration files SYNOPSIS
sysconftool [options] [filename.dist...] DESCRIPTION
sysconftool is a development utility that helps to install application configuration files. sysconftool allows an existing application to be upgraded without losing the older version's configuration settings. A new version of an application often introduces new configuration settings. Sometimes obsolete configuration settings are removed. Existing configuration settings may also now have additional options, or certain options are no longer valid any more. Because of this, an application upgrade usually installs a fresh set of configuration files, containing a default configuration that's known to work. Keeping the existing files carries the risk of the application failing to function properly due to a configuration that is no longer valid. A typical application installation script copies over configuration files with default settings. Existing configuration files are backed up or overwritten. With sysconftool, an application will install a configuration file names filename.dist, instead of filename. Then, the application's installation script runs sysconftool. sysconftool copies filename.dist to filename, but also checks if filename from an older version of the application already exist. If filename an older sysconftool-installed configuration file, it's configuration settings replace the defaults in filename.dist, which is then subsequently installed as filename. sysconftool is smart enough to: o Remove configuration settings that no longer exist. o Add new configuration settings. o Do not preserve an older configuration setting if there's a possibility that it is no longer valid in the new version of the application. sysconftool produces a short report when it runs. The report lists every configuration setting in $filename.dist, and its disposition. The possible dispositions are: new This a new configuration setting that wasn't found in the existing $filename. unchanged This setting's value was taken from the existing $filename, replacing the default value provided by $filename.dist. UPDATED This setting has been previously set in $filename, but the setting's value may no longer be valid in the new version of the application, so its default value is taken from $filename.dist, and it may need to be manually adjusted. All this logic is based on some additional metadata that must be included in each configuration file, that sysconftool reads. For this to work, both the old and the new version of the application must be sysconftool-ized. sysconftool operates in a fail-safe mode. If the old version did not use sysconftool, $filename is backed up to $filename.bak, and $filename is copied to $filename. This is what would essentially happen anyway without sysconftool. The local configuration needs to be reentered into $filename, so nothing is lost. However, the next upgrade will see sysconftool do its job. ADDING SYSCONFTOOL SUPPORT TO AN EXISTING APPLICATION
sysconftool requires the application to use autoconf and automake. The first step is to run the sysconftoolize script from the application's source directory. sysconftoolize copies the sysconftool script to the current directory, and appends a default install-configure rule to Makefile.am. After running sysconftoolize the macro AC_PROG_SYSCONFTOOL must be manually added to configure.in, and Makefile.am must be modified as follows. Makefile.am must be modified to install configuration files as filename.dist instead of filename. The default install-configure rule assumes that sysconf_DATA lists all configuration files in sysconfdir, and runs sysconftool on them. This will usually have to be modified, according to the application's individual needs. Finally, Makefile.am must be modified to distribute the sysconftool script in the application's source distribution. Adding sysconftool to EXTRA_DIST is what's needed in most cases. Finally, certain sysconftool magic incantations must be added to the application's configuration files, see sysconftool(7)[1] for more information. The last step involves updating the application's INSTALL instructions, so that the application can be properly installed. The following instructions must be added to INSTALL: 1. Run "make install-configure" after "make install". 2. If this is the first sysconftool-ized version, DO NOT simply copy over the old configuration files, and overwrite the new configuration files. Instead, manually edit each configuration file, and manually reset each configuration setting. This is because the new configuration files include the magic code for sysconftool, which would be lost when the configuration file is overwritten. 3. If this is not the first sysconftool-ized version, the output of make install-configure must be reviewed in order to manually adjust or tweak what sysconftool did. Many large configuration files can result in lots of output, so the output of make install-configure should be saved into a file, and reviewed. SEE ALSO
sysconftoolcheck(1)[2], sysconftool(7)[1]. AUTHORS
Double Precision, Inc. NOTES
1. sysconftool(7) [set $man.base.url.for.relative.links]/sysconftool.7.html 2. sysconftoolcheck(1) [set $man.base.url.for.relative.links]/sysconftoolcheck.1.html Courier Mail Server 04/05/2011 SYSCONFTOOL(1)
All times are GMT -4. The time now is 10:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy