Installing and Uninstalling packages from source
Hello Readers,
Today I'll tell you about installing packages in Ubuntu using the config file and the .tar of the package.
Firstly we'll extract that .tar file which consists of the files required to install the package.
***************run the commands via sudoers****************
There are 2 main files in the archive where first is the config file and second is the make.in file.
The config file is the file which consists of all the configuration required for the package, it checks for the preliminary packages which are required and the version whether they are updated to the latest or not and other prerequisites required for installation.
To run the configure file you first need to move to that directory.
Let's say you are installing a GLIB package which is placed in the download directory
But there will be a situation where you'll make your system trash by installing the
###NOT AT ALL REQUIRED### Packages
Don't Worry!! Open source knows every right and wrong what a user can do so if you installed any of the packages which damage your system or is not required then you can easily uninstall the package using the following commands:
Next Blog will be related to Web Development or if you want something in particular then do leave a comment!
Till then,
Adios Lactores
Happy Blogging!!!
Today I'll tell you about installing packages in Ubuntu using the config file and the .tar of the package.
Firstly we'll extract that .tar file which consists of the files required to install the package.
***************run the commands via sudoers****************
There are 2 main files in the archive where first is the config file and second is the make.in file.
The config file is the file which consists of all the configuration required for the package, it checks for the preliminary packages which are required and the version whether they are updated to the latest or not and other prerequisites required for installation.
To run the configure file you first need to move to that directory.
Let's say you are installing a GLIB package which is placed in the download directory
- > cd Downloads/glib-2.43.4
- > ./configure
- > make
- > make install
But there will be a situation where you'll make your system trash by installing the
###NOT AT ALL REQUIRED### Packages
Don't Worry!! Open source knows every right and wrong what a user can do so if you installed any of the packages which damage your system or is not required then you can easily uninstall the package using the following commands:
- > cd Downloads/glib-2.43.4
- > make uninstall
Next Blog will be related to Web Development or if you want something in particular then do leave a comment!
Till then,
Adios Lactores
Happy Blogging!!!
Comments
Post a Comment