You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Linux Pakistan
Each Linux distro comes with its own package manager.
However, in machines with no internet connection, package managers are
of little use.
So the only solution is to download from another machine and install
in ur machine without using package managers.
When u download a software from Internet for Linux, it is usually
in .tar.bz2 or .tar.gz format.
I'l brief on how to install those softwares.
1)Login as SuperUser
2)Navigate to the directory containing the setup file
3)To unzip:
->For files ending in .tar.gz ===> tar -zxvf <filename>
->For files ending in .tar.bz2===> tar -jxvf <filename>
->For files ending in .zip ===> unzip <filename>
4)Go to the unzipped directory using 'cd'
5)Use the readme file in the unzipped directory to get further
instructions on how to proceed the installation.
6)Typically it'l be as follows.
more INSTALL
./configure
make
make install
That's it!
Check the user documentation of the software you installed for details
of how to run the application.
<Sat Benedict>
Ahmed Bilal Jan
unread,
May 24, 2009, 6:00:54 AM5/24/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message