Learn how to install note with the command sudo apt-get install note on Ubuntus.
Ads
Quick installation of note:
Step 1: Update system:
sudo apt-get update
Step 2: Install: note
Ater updaing the OS run following command to install the packae:
sudo apt-get install note
Package Details | |
Package: | note |
Version: | 1.3.7-1 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.daemon.de/NOTE |
Description: | small program managing notes from commandline This is a small console program similar to knotes, which allows you to manage notes from commandline. Note can use different database-backends for notes-storage. It ships with a DBI-based mysql-module (which can also be used by others through a DBI-based supported DBMS) and another module, which uses a binary file for storage and a DBM module. Homepage: http://www.daemon.de/NOTE |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/utils |
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 note is not installed on your compter then the command 'dpkg -L note' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L note Package `note' 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 note:
After system update use the following command to install note:
sudo apt-get install note
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.
Now we will see the commands for uninstalling the note 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 note following command is used:
sudo apt-get remove note
Following command is used to remove the note package along with its dependencies:
sudo apt-get remove --auto-remove note
This will remove note and all its dependent packages which is no longer needed in the system.
Completely removing note with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge note
or you can use following command also:
sudo apt-get purge --auto-remove note
Above command will remove all the configuration files and data associated with note package. You can can't recover the delete data, so, use this command with care.