How to know if PGP has been installed on the Linux server?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to know if PGP has been installed on the Linux server?
# 1  
Old 01-03-2015
CPU & Memory How to know if PGP has been installed on the Linux server?

Hi Guys

I am working on a project where is looking after the infrastructure and they have delivered RHEL servers.
I need to confirm if PGP has been installed on the newly delivered linux servers.

Is there any command I can run or directory I can go in to find that out.

Any help will be appreciated Smilie.

Thanks
# 2  
Old 01-03-2015
Quote:
Originally Posted by sachinksl
I need to confirm if PGP has been installed on the newly delivered linux servers.

Is there any command I can run or directory I can go in to find that out.
RHEL is based on rpm, so perhaps something like

Code:
rpm -qa | grep -i pgp

should do the trick. (There is surely a more elegant way to use rpm but as AIX specialist i don't know it.) Alternatively do a

Code:
which pgp

or, depending on the shell you use
Code:
whereis pgp

to find out if it is in the PATH.

I hope this helps.

bakunin
# 3  
Old 01-04-2015
Quote:
Originally Posted by bakunin
RHEL is based on rpm, so perhaps something like

Code:
rpm -qa | grep -i pgp

Result of above command:-
-sh-4.1$ rpm -qa | grep -i pgp
pgpcmdln-10.3.0.214-214.x86_64
( Does above result proves its been installed )



should do the trick. (There is surely a more elegant way to use rpm but as AIX specialist i don't know it.) Alternatively do a

Code:
which pgp

or, depending on the shell you use
Result of above command:-

-sh-4.1$ which pgp
/usr/bin/which: no pgp in (/opt/ibm/java-x86_64-70/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin)
( Does above result proves its been installed )


Code:
whereis pgp

to find out if it is in the PATH.
Result of above command:-

-sh-4.1$ whereis pgp
pgp: /usr/share/pgp /opt/pgp/bin/pgp /usr/share/man/man1/pgp.1.gz
( Does above result proves its been installed )

I hope this helps.

bakunin
Please confirm my results in RED above. Thanks for your reply
# 4  
Old 01-04-2015
Try:
Code:
rpm -q pgp

but probably:
Code:
rpm -q gnupg2

otherwise use the name of the package..

Last edited by Scrutinizer; 01-04-2015 at 09:31 AM..
# 5  
Old 01-04-2015
To answer your question: pgp is installed. But it is not configured. Each user has to create key sets, for example. So if someone wants to encrypt data they cannot do it now.
# 6  
Old 01-05-2015
Thanks everyone for their replies. Cheers
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

See installed drivers in Linux

Hello everyone from Tenerife, Canary Islands. How can i see in Debian or similar operating system the installed drivers or controllers ? Best Regards https://image.ibb.co/kC5C87/winkho2.gif (1 Reply)
Discussion started by: JohnFissburyn
1 Replies

2. UNIX for Beginners Questions & Answers

Which X Window system is installed on my server that would work with Xming?

I would like to use Xming to connect a server and managed to get it to work. I am now trying to get it to connect to a different server but i am not sure which X Window system is installed. I tried it through putty and i get the following error/warning: /usr/java/jdk1.7.0_67/bin> jvisualvm... (5 Replies)
Discussion started by: ziggy25
5 Replies

3. Solaris

Information regarding softwares installed on the Solaris server

I need to know information regarding the softwares/applications that are installed on my Solaris server and also its end of life or support information. Can some one help me how to get these details please... Thanks (3 Replies)
Discussion started by: ssk250
3 Replies

4. Homework & Coursework Questions

Configure the AD Window server with Linux server(google Authenticator is installed)

Hi my name is Manju. ->I have configure the two way authentication on my linux server. ->Now I am able to apply two way authenticator on particuler user. ->Now I want to map this linux server to my AD server. ->Kindly tell me how to map AD(Active Directory) with this linux server. ... (2 Replies)
Discussion started by: manjusharma128
2 Replies

5. Red Hat

Installed apache server , can't connect from outside (using CentOS in WMware )

Hello all I installed apache in CentOS 5.5 ,after searching the web for tips on configuration I did the fallowing stuff to unable connecting the http server from outside. In /etc/httpd/conf/httpd.conf I changed the Listen value to 0.0.0.8011 Then checked with then check with: netstat -anp and I... (2 Replies)
Discussion started by: umen
2 Replies

6. UNIX for Dummies Questions & Answers

Command to see what software installed on linux server

I am using red hat linux server. I need to know what softwares installed on that server. What command can i use to get this list? Any help is highly appreciated. (2 Replies)
Discussion started by: govindts
2 Replies

7. Solaris

Whether Sun studio is installed on my Solaris Server?

Hi All I want to confirm the installation of Sun Studio installation on my UNIX development server. Please suggest how to get that. Cheers, Ankur (4 Replies)
Discussion started by: sharmaankur85
4 Replies

8. UNIX for Advanced & Expert Users

command to find when Linux OS is installed?

hey , Anyone knows command to find when Linux OS is installed? Date and time? (2 Replies)
Discussion started by: crackthehit007
2 Replies

9. Ubuntu

list the softwares installed in Linux

I need list of 3rd party softwares installed in a Unix server (eg: Fedora / RedHat). I know if they are system supported format (like rpm format for fedora/redhat, pkg format for debian/ubuntu etc) we can list them by system specific commands ($ rpm -qa). But how to list the softwares installed... (3 Replies)
Discussion started by: uday123
3 Replies

10. HP-UX

web server installed?

Hi, I need to check whether webserver is installed in my UNIX box or not Can some one please help me (command?) Thanks (4 Replies)
Discussion started by: vivek_damodaran
4 Replies
Login or Register to Ask a Question