LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-20-2014, 12:17 PM   #1
howardlm1
LQ Newbie
 
Registered: Jun 2014
Location: Ayer, Massachusetts, USA
Distribution: Debian 3.2.46-1
Posts: 5

Rep: Reputation: Disabled
New kid on Debian block. Haven't used Linux since 2006


Greetings,

Please pardon my ignorance. I know practically nothing about Linux as I've been a Windows guy since the beginning. At work here I am expected to install things. My 1st accomplishment is making myself SU. I understand that to install the MPLAB IDE, I need to install the 32-bit Linux libraries. Can this be done through the GUI inteface or do I have to do it at the command line level? Any help is greatly appreciated! Where do I begin?

Regards,
howard.
 
Old 06-20-2014, 12:31 PM   #2
joe_2000
Senior Member
 
Registered: Jul 2012
Location: Aachen, Germany
Distribution: Void, Debian
Posts: 1,016

Rep: Reputation: 308Reputation: 308Reputation: 308Reputation: 308
Hello Howard, welcome to the forum. The answer to your question heavily depends on the Distribution you are using. This could be e.g. Debian, RedHat, SuSE...
If you do not know which distro you are using here are two links with directions on how to find out:

http://www.howtoforge.com/how_to_fin...x_distribution
http://www.cyberciti.biz/faq/find-li...ersion-number/
 
Old 06-20-2014, 12:37 PM   #3
howardlm1
LQ Newbie
 
Registered: Jun 2014
Location: Ayer, Massachusetts, USA
Distribution: Debian 3.2.46-1
Posts: 5

Original Poster
Rep: Reputation: Disabled
Sorry, I forgot to mention I am using Debian Linux on this PC.
Guten Tag.

Last edited by howardlm1; 06-20-2014 at 12:40 PM.
 
Old 06-20-2014, 12:40 PM   #4
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
There are a lot of libraries, do you know which ones you need? Hard to tell what you mean by "Linux libraries."
 
Old 06-20-2014, 12:44 PM   #5
howardlm1
LQ Newbie
 
Registered: Jun 2014
Location: Ayer, Massachusetts, USA
Distribution: Debian 3.2.46-1
Posts: 5

Original Poster
Rep: Reputation: Disabled
Not entirely sure. On the MPLAB website it said to install the 32-bit compatibility libraries before installing the MPLAB IDE. Does that help?
 
Old 06-20-2014, 12:48 PM   #6
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
Compatibility runtime libraries for debian:

https://packages.debian.org/squeeze/ia32-libs

Thats the name of the package and a description. If that checks out, then using aptitude, or apt-get to install the package is your next step, ie:

Code:
apt-get install ia32-libs
 
Old 06-20-2014, 01:09 PM   #7
howardlm1
LQ Newbie
 
Registered: Jun 2014
Location: Ayer, Massachusetts, USA
Distribution: Debian 3.2.46-1
Posts: 5

Original Poster
Rep: Reputation: Disabled
Thanks. Following download of the file I did cd /Downloads. Then apt-get install ia32-libs_2014013_ia64.deb.
It prints:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ia32-libs_20140131_ia64.deb
E: Couldn't find and package by regex 'ia32-libs_20140131_ia64.deb

How can read the package then say it can't find it? Did I do this right?
 
Old 06-20-2014, 01:36 PM   #8
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
Ah,.. I was just pointing you to information about the package. You don't have to actually download it.

Just type the command I provided and it will install that package from your current debian repositories and take care of the many dependencies it probably has. Doing it by hand (downloading and installing) might be a pain in the ass.
 
Old 06-20-2014, 01:58 PM   #9
howardlm1
LQ Newbie
 
Registered: Jun 2014
Location: Ayer, Massachusetts, USA
Distribution: Debian 3.2.46-1
Posts: 5

Original Poster
Rep: Reputation: Disabled
A guy here who knows this well had to edit a file associated with apt-get as it kept telling me to install a CDROM. Now that it is pointing to websites it is busy installing library packages. Thank you for your help.

Howard.
 
Old 06-20-2014, 02:05 PM   #10
Habitual
LQ Veteran
 
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Blog Entries: 37

Rep: Reputation: Disabled
Howard:
Welcome to LQ.
Bookmark these --> http://www.debianhelp.co.uk/
http://www.debianadmin.com/

Have fun!
 
Old 06-20-2014, 10:05 PM   #11
Randicus Draco Albus
Senior Member
 
Registered: May 2011
Location: Hiding somewhere on planet Earth.
Distribution: No distribution. OpenBSD operating system
Posts: 1,711
Blog Entries: 8

Rep: Reputation: 635Reputation: 635Reputation: 635Reputation: 635Reputation: 635Reputation: 635
Quote:
Originally Posted by howardlm1 View Post
A guy here who knows this well had to edit a file associated with apt-get as it kept telling me to install a CDROM.
That file is your sources list. Its location is /etc/apt/sources.list.
When the system is installed from a disc, the installation disc is enabled as a source of packages. All your colleague did was open the file with an editor, probably nano, and put a "#" in front of each of the two CD entries.

Believe it or not, most of the administrative work with Debian is that easy. Have fun.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
New kid on the block..... terryb99901 LinuxQuestions.org Member Intro 1 04-02-2009 08:19 PM
New kid on the block. TheShape LinuxQuestions.org Member Intro 1 08-16-2008 03:36 PM
LXer: Linux Is No Longer The Cool New Kid On The Block. So Now What? LXer Syndicated Linux News 0 04-13-2008 11:10 AM
New Kid on the Block Dirk Stiletto LinuxQuestions.org Member Intro 1 11-20-2007 07:19 AM
I'm The New Kid On The Block michaelsil1 LinuxQuestions.org Member Intro 1 04-07-2004 08:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration