How to install Linux Offline installation files
Linux has some types of separated installation type files Like Deb, Rpm. Linux is a open source operating system. And also It's a free basic type.
I am going to tell you how to install off-line installation files in Linux
How to install deb offline installation files in Debian type:-
Debian type installation files names has *.deb format.
You can install the .deb files by two ways, those are
1) Using terminal/command line:
This will install any file of your installation supported and also a dangerous method also can destroy the package dependency tree and also take into system crash some times be-aware of this process.
For system update files use the system default installer thats a best one.
For installing the application you need to access root privileges so follow these steps for install the application
First open the terminal in your operating system
type sudo -i in your terminal and press Enter.
It will ask you to enter the password, Enter your user password as password.
Type dpkg -i Then drag the .deb file into your terminal by hold click on it. (or)
Type cd package place folder location then type dpkg -i package name.deb and press enter.
Your package has been installed.
2) Using default Software installer:
Give a double click on the package it will redirect to the inbuilt software installer and also it can download the additional package.You need a network connection for install any application.
I am recommended this process it's really safe you can manage better one.
How to install rpm offline installation files in Redhat type:-
Redhat type installation files names has *.rpm format.
You can install the .rpm files by two ways, those are
1) Using terminal/command line:
This will install any file of your installation
supported and also a dangerous method also can destroy the package
dependency tree and also take into system crash some times be-aware of
this process.
For system update files use the system default installer thats a best one.
For installing the application you need to access root privileges so
follow these steps for install the application
First open the terminal in your operating system
type sudo -i in your terminal and press Enter.
It will ask you to enter the password, Enter your user password as password.
Type rpm -i Then drag the .rpm file into your terminal by hold click on it. (or)
Type cd package place folder location then type rpm -i package name.rpm and press enter.
Your package has been installed.
2) Using default Software installer:
Give a double click on the package it will redirect to the inbuilt
software installer and also it can download the additional package.You
need a network connection for install any application.
I am recommended this process it's really safe you can manage better one.
Thank you
Help Kidoo . .