LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to install a comic reader (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-a-comic-reader-937583/)

humanmummyconfection 04-01-2012 04:06 PM

How to install a comic reader
 
Linux was installed by someone else for me, and I have absolutely no idea what I'm doing. I've searched tutorials but they're all gibberish to me.
I'm trying to install a comic reader (comix) that I've downloaded. It would be great if anyone could help.

rokytnji 04-01-2012 04:11 PM

Code:

harry@biker:~$ apt-cache policy comix
comix:
  Installed: 4.0.4-1
  Candidate: 4.0.4-1
  Version table:
 *** 4.0.4-1 0
        500 http://http.us.debian.org/debian/ testing/main i386 Packages
        100 /var/lib/dpkg/status

It will be in your software center in Ubuntu. No need to install comix from the net.

humanmummyconfection 04-01-2012 04:15 PM

It said "The action would require the installation of packages from not authenticated sources." And to check my internet connection. It's connected. Can I do this manually or is clicking the install button the only way?

rokytnji 04-01-2012 04:36 PM

Quote:

The action would require the installation of packages from not authenticated sources.
That is a standard warning letting you know that comix is not in Ubuntu repositories directly. You should be OK though to

Quote:

Can I do this manually
Code:

sudo apt-get update
password and hit enter/return key.

then type in after updating is done.

Code:

apt-cache policy comix
to see version available. To install comix manually

Code:

sudo apt-get install comix

humanmummyconfection 04-01-2012 05:21 PM

Wow I really have no Idea what I'm doing. Searched variations of sudo apt in the software center and when I tried to install that, it said the same thing it did about comix. "Check connection" then flashed the warning. Nothing I try to install is installing.

frankbell 04-01-2012 07:45 PM

Slow down.

You are making things much more complicated than they need to be. Installing software in Linux is far different and ultimate much simpler than installing it in Windows, once you understand how it works.

In Windows, you typically download an executable file (or download and decompress a zip file to reveal an executable file), then run the executable file, which in turn installs the software.

sudo and apt-get are already present on your system. They do not need to be installed.

Here's an explanation of the use of sudo in Ubuntu.

Here's a description of apt-get. Distributions based on Debian use apt-get. Distributions based on Red Hat/Fedora use a program called yum (Yellow Dog Update Manager) to perform the same functions. Distributions based on Slackware--well, Slackware happily goes its own way.

In Linux, executable file installs are rare. I have probably done it with fewer than a dozen programs in seven years of using Linux.

The most common way of installing software in Linux is to install it directly from a repository or repo. When you install from the repo successfully, the installation is complete and, for the most common desktop environments, the application is added to the menu. This article summarizes it nicely for Ubuntu.

The other way to install software is by compiling it. You download the source code and run the necessary commands to create an installable package (./configure followed by make) and then to install it (make install). It's nowhere nearly so complicated as it sounds; this article gives a good description.

Following some of these links and reading up on what's going on will likely help you mightily.

humanmummyconfection 04-22-2012 02:51 PM

My sources list is blank? I can't uncomment the lineds to enable universe and multiverse.

frankbell 04-22-2012 09:02 PM

To view your sources.list, try this command:

Code:

sudo cat /etc/apt/sources.list
Enter your password when prompted and post the output here.

I imagine you're getting rather frustrated. It looks as if you were cast adrift without being shown how to use the oars. Be assured we will help you; LQ likes nothing more than satisfied Linux users.

Also please post which version of Ubuntu you are running. As Ubuntu has made some significant changes over the past year, that information will help us provide the most useful advice.


All times are GMT -5. The time now is 12:04 PM.