Install tinyca on Ubuntu: sudo apt-get install tinyca

Learn how to install tinyca with the command sudo apt-get install tinyca on Ubuntus.


 

Ads

Quick installation of tinyca:

Step 1: Update system:

	sudo apt-get update

Step 2: Install: tinyca

Ater updaing the OS run following command to install the packae:

	sudo apt-get install tinyca

Package Details

Package:tinyca
Version:0.7.5-3
Maintainer:Ubuntu Developers
Home page:http://tinyca.sm-zone.net/
Description:simple graphical program for certification authority management TinyCA is a program with a simple graphical user interface that makes managing a small CA (Certification Authority) easy. TinyCA works as a frontend for openssl and can deal with several independent CAs. . With TinyCA you can create and manage x509 and S/MIME server and client certificates. You can choose between RSA and DSA keys, as well as between different digest algorithms. . The certificates can be exported as PEM, DER, TXT and PKCS#12 or as a convenient archive containing both key and certificate. Certificates can be revoked by adding them to a certificate revocation list. Homepage: http://tinyca.sm-zone.net/
Distro:Ubuntu 12.04 LTS
Release:
Repo/Section:universe/utils

How to install tinyca on Ubuntu 12.04 LTS?

Install tinyca on Ubuntu: sudo apt-get install tinyca

First of all update your system with the command:

sudo apt-get update

Ads

Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.

After downloading the latest package list with the help of above you can run the installation process.

If tinyca is not installed on your compter then the command 'dpkg -L tinyca' will give followin error.

deepak@deepak-VirtualBox:~$ dpkg -L tinyca
Package `tinyca' is not installed.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
deepak@deepak-VirtualBox:~$ 

Installing tinyca:

After system update use the following command to install tinyca:

sudo apt-get install tinyca

Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.

How to uninstall/remove tinyca from Ubuntu 12.04 LTS?

Now we will see the commands for uninstalling the tinyca from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.

To remove the tinyca following command is used:

sudo apt-get remove  tinyca

Following command is used to remove the tinyca package along with its dependencies:

sudo apt-get remove --auto-remove tinyca

This will remove tinyca and all its dependent packages which is no longer needed in the system.

Completely removing tinyca with all configuration files:

Following command should be used with care as it deletes all the configuration files and data:

sudo apt-get purge tinyca

or you can use following command also:

sudo apt-get purge --auto-remove tinyca

Above command will remove all the configuration files and data associated with tinyca package. You can can't recover the delete data, so, use this command with care.