How To Install fccexam on Debian 9
Introduction
In this tutorial we learn how to install fccexam
on Debian 9.
What is fccexam
fccexam is:
fccexam is an interactive study guide for USA FCC commercial radio exams. question pool choices: T1 First Class Radiotelegraph: elements 1, 5, 6. T2 Second Class Radiotelegraph: elements 1, 5, 6. T3 Third Class Radiotelegraph: elements 1, 5. GROL General Radiotelephone Operator License: elements 1, 3. GROL+ General Radiotelephone Operator License + Radar: elements 1, 3, 8. MROP Marine Radio Operator Permit: element 1. GMDSS Global Maritime Distress Safety System Radio Operator: elements 1, 7. GMDSS+ GMDSS Radio Maintainer + Radar: elements 1, 7, 8, 9. RGMDSS Restricted GMDSS Radio Operator: elements 1, 7R. Questions are chosen randomly from the selected pool. Incorrect answers cause the question to be asked again later. Licenses are issued by the FCC, but exams are conducted by COLEM Examiners. For more information about FCC commercial radio licensing: http://wireless.fcc.gov/commoperators/index.htm?job=home
There are three methods to install fccexam
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install fccexam Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install fccexam
using apt-get
by running the following command:
sudo apt-get -y install fccexam
Install fccexam Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install fccexam
using apt
by running the following command:
sudo apt -y install fccexam
Install fccexam Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install fccexam
using aptitude
by running the following command:
sudo aptitude -y install fccexam
How To Uninstall fccexam on Debian 9
To uninstall only the fccexam
package we can use the following command:
sudo apt-get remove fccexam
Uninstall fccexam And Its Dependencies
To uninstall fccexam
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove fccexam
Remove fccexam Configurations and Data
To remove fccexam
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge fccexam
Remove fccexam configuration, data, and all of its dependencies
We can use the following command to remove fccexam
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fccexam
Dependencies
fccexam have the following dependencies:
References
Summary
In this tutorial we learn how to install fccexam
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.