Installing downloaded software
- mstrick96
- Offline
- New Member
Less
More
- Posts: 18
- Thank you received: 0
16 Jan 2016 03:44 #68513
by mstrick96
Installing downloaded software was created by mstrick96
I am a Linux and linuxcnc newbie. Am getting familiar with both and plan to build a cnc router. Lots to learn!
I obtained an old Pentium4 computer and have successfully loaded Linux CNC 2.7 Debian wheezy on it. I am not so successfully trying to install other software such as TeamViewer software on this system. I can use Synaptic to install repository software but am unable to figure out how to install a downloaded .deb file.
How do I install a downloaded package onto this system? Have tried the Synaptic Package manager but can't sort out how to select the TeamViewer downloaded package.
I obtained an old Pentium4 computer and have successfully loaded Linux CNC 2.7 Debian wheezy on it. I am not so successfully trying to install other software such as TeamViewer software on this system. I can use Synaptic to install repository software but am unable to figure out how to install a downloaded .deb file.
How do I install a downloaded package onto this system? Have tried the Synaptic Package manager but can't sort out how to select the TeamViewer downloaded package.
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
Less
More
- Posts: 23178
- Thank you received: 4864
16 Jan 2016 10:56 #68519
by andypugh
Replied by andypugh on topic Installing downloaded software
The Synaptic GUI typically installs the software for you, rather than you having to download then manually install.
Similarly, at the command-linewill automatically download and install the package and it's dependencies.
If you have a .deb file then you need the command
Similarly, at the command-line
sudo apt-get --install somepackage
If you have a .deb file then you need the command
sudo dpkg -i /path/to/deb.deb
The following user(s) said Thank You: mstrick96
Please Log in or Create an account to join the conversation.
- mstrick96
- Offline
- New Member
Less
More
- Posts: 18
- Thank you received: 0
16 Jan 2016 14:01 #68523
by mstrick96
Replied by mstrick96 on topic Installing downloaded software
Thanks, Andy,
That helps. I used the command line to find and attempt the install of my .deb file. It went through the steps but then failed due to a missing dependency. I'll try that again and will use the apt-get to find and install the dependency first.
I was successful with the Synaptic at installing packages that are in its repository. I couldn't find Team Viewer though. Is it possible to use Synaptic to install a downloaded .deb file?
That helps. I used the command line to find and attempt the install of my .deb file. It went through the steps but then failed due to a missing dependency. I'll try that again and will use the apt-get to find and install the dependency first.
I was successful with the Synaptic at installing packages that are in its repository. I couldn't find Team Viewer though. Is it possible to use Synaptic to install a downloaded .deb file?
Please Log in or Create an account to join the conversation.
- ArcEye
- Offline
- Junior Member
Less
More
- Posts: 24
- Thank you received: 758
16 Jan 2016 14:17 - 16 Jan 2016 14:18 #68524
by ArcEye
Replied by ArcEye on topic Installing downloaded software
Team Viewer requires quite a few packages, albeit some should already exist
In a terminal run
sudo apt-get install -y libc6 libgcc1 libasound2 libdbus-1-3 libexpat1 libfontconfig1 libfreetype6 libjpeg62 libpng12-0 libsm6 libxdamage1 libxext6 libxfixes3 libxinerama1 libxrandr2 libxrender1 libxtst6 zlib1g
Then run
sudo dpkg -i /path/to/deb.deb
again
You could try to install via synaptic, but setting it up to install from a static location rather than a repo, is not as easy as just doing the above
regards
In a terminal run
sudo apt-get install -y libc6 libgcc1 libasound2 libdbus-1-3 libexpat1 libfontconfig1 libfreetype6 libjpeg62 libpng12-0 libsm6 libxdamage1 libxext6 libxfixes3 libxinerama1 libxrandr2 libxrender1 libxtst6 zlib1g
Then run
sudo dpkg -i /path/to/deb.deb
again
You could try to install via synaptic, but setting it up to install from a static location rather than a repo, is not as easy as just doing the above
regards
Last edit: 16 Jan 2016 14:18 by ArcEye.
The following user(s) said Thank You: mstrick96
Please Log in or Create an account to join the conversation.
- cncbasher
- Offline
- Moderator
Less
More
- Posts: 1744
- Thank you received: 288
16 Jan 2016 15:11 #68526
by cncbasher
Replied by cncbasher on topic Installing downloaded software
to install teamviewer download
download.teamviewer.com/download/teamviewer_i386.deb
then from a terminal run
dpkg -i teamviewer_linux.deb
download.teamviewer.com/download/teamviewer_i386.deb
then from a terminal run
dpkg -i teamviewer_linux.deb
Please Log in or Create an account to join the conversation.
- ArcEye
- Offline
- Junior Member
Less
More
- Posts: 24
- Thank you received: 758
16 Jan 2016 15:27 #68528
by ArcEye
The point is that dpkg will not install dependencies.
Either you pre-install all the dependencies from the control file as per my last post, or you try running
sudo apt-get -f install
and hopefully apt-get will resolve the missing dependencies.
I prefer a bit of certainty, 'sudo apt-get -f install' can on occasions do some very funny things, removing all sorts of packages you want because they are listed in dependencies of a package it has replaced etc.
Replied by ArcEye on topic Installing downloaded software
to install teamviewer download
download.teamviewer.com/download/teamviewer_i386.deb
then from a terminal run
dpkg -i teamviewer_linux.deb
The point is that dpkg will not install dependencies.
Either you pre-install all the dependencies from the control file as per my last post, or you try running
sudo apt-get -f install
and hopefully apt-get will resolve the missing dependencies.
I prefer a bit of certainty, 'sudo apt-get -f install' can on occasions do some very funny things, removing all sorts of packages you want because they are listed in dependencies of a package it has replaced etc.
The following user(s) said Thank You: mstrick96
Please Log in or Create an account to join the conversation.
- mstrick96
- Offline
- New Member
Less
More
- Posts: 18
- Thank you received: 0
16 Jan 2016 20:03 #68535
by mstrick96
Replied by mstrick96 on topic Installing downloaded software
Good information from everyone! Thanks.
I was not aware that installing non-repository packages with Synaptic was that much more difficult. I'll use the command line approach.
One other question that this brings up,mthough, is how can I find the list of dependencies for a given package? If apt-get doesn't always resolve the dependencies very well, it seems that it would be less trouble to just list the dependencies in the dpkg command as you suggest.
I was not aware that installing non-repository packages with Synaptic was that much more difficult. I'll use the command line approach.
One other question that this brings up,mthough, is how can I find the list of dependencies for a given package? If apt-get doesn't always resolve the dependencies very well, it seems that it would be less trouble to just list the dependencies in the dpkg command as you suggest.
Please Log in or Create an account to join the conversation.
- mstrick96
- Offline
- New Member
Less
More
- Posts: 18
- Thank you received: 0
17 Jan 2016 01:46 #68551
by mstrick96
Replied by mstrick96 on topic Installing downloaded software
OK. I researched the dependencies question and found that I can use
# apt-cache depends teamviewer
to find the package dependencies.
Will study apt-get and dpkg more.
Thanks all!
# apt-cache depends teamviewer
to find the package dependencies.
Will study apt-get and dpkg more.
Thanks all!
Please Log in or Create an account to join the conversation.
- mozmck
- Offline
- Administrator
Less
More
- Posts: 60
- Thank you received: 57
17 Jan 2016 02:41 #68555
by mozmck
Replied by mozmck on topic Installing downloaded software
I believe the program gdebi is available in wheezy. You can install that through synaptic, then you can open a .deb file with gdebi and it will install it including downloading all necessary dependencies.
If you go to the file properties for any .deb file in the file manager you can set gdebi to be the default program to open .deb files, and then you can just double-click them to open in gdebi and then install.
If you go to the file properties for any .deb file in the file manager you can set gdebi to be the default program to open .deb files, and then you can just double-click them to open in gdebi and then install.
Please Log in or Create an account to join the conversation.
- mstrick96
- Offline
- New Member
Less
More
- Posts: 18
- Thank you received: 0
17 Jan 2016 03:01 #68556
by mstrick96
Replied by mstrick96 on topic Installing downloaded software
Thanks! I found a site that describes how to download and use gdebi to do that.
Sounds useful!
Sounds useful!
Please Log in or Create an account to join the conversation.
Time to create page: 0.124 seconds