I have just upgraded my Dell Inspiron 1545 laptop from Ubuntu 12.04 to 13.04. Unfortunately the top bar now has a little red circle with a minus sign in it. When I click it, it opens a box with the following message in it:
An error occurred, please run Package Manager from the right-click from the right click window or apt-get in a terminal to see what is wrong. The error message was: ‘Unknown Error:»(E:The package google-chrome-stable needs to be reinstalled, but I can’t find an archive for it.)’This usually means that you have >installed packages with unmet dependencies
I don’t have a lot of experience using ubuntu, or linux in general, and I don’t know what this means. It sounded to me like some kind of google chrome error. I had downloaded and installed google chrome only a few minutes before. I ran apt-get in the terminal but it didn’t do anything, and I had no idea what run the Package Manager from the right click window meant. Google chrome and the geany ide are the only sofware I have installed since installing linux. The computer seems to be running perfectly fine. Do you have any suggestions on what I should do?
The results from: sudo apt-get -f install are:
E: The package google-chrome-stable needs to be reinstalled, but I can’t find an archive for it.
asked May 27, 2013 at 1:11
JamesJames
3,1035 gold badges20 silver badges21 bronze badges
1
It seems that google-chrome-stable have broke your system for some reason. Try this:
Open your terminal window
Ctrl+Alt+T
Then right there type commands (after each command type enter and respond yes to questions)
sudo apt-get remove google-chrome-stable
Then update the system via
sudo apt-get update && sudo apt-get upgrade
Let apt-get run and if there is any error post as comment here and I will help (or anyone available)
If the Commands fails you can try these ones:
Update Packages
sudo apt-get update
clean the downloaded packages (where there might be broken ones)
sudo apt-get clean
Remove unneeded packages (careful! If it might list something that is needed but its dependency or such have been removed and left it orphan)
sudo apt-get autoremove
Reconfigure all packages
sudo dpkg --configure -a
Fix broken packages
sudo apt-get install -f
answered May 27, 2013 at 19:30
Stefano MtangooStefano Mtangoo
2,7602 gold badges28 silver badges39 bronze badges
16
Removing the packages list and updating solved the issue for me
Open the terminal: Ctrl+Alt+T
Remove the package list:
sudo rm -vf /var/lib/apt/lists/*
-
-v, --verbose
explain what is being done -
-f, --force
ignore nonexistent files and arguments, never prompt
Update the packages:
sudo apt-get update
answered Aug 16, 2016 at 6:38
Deepak MahakaleDeepak Mahakale
1,0152 gold badges10 silver badges17 bronze badges
1
Fixing the problem with Software Center
When I encountered the same problem (not sure which application caused the problem), running Software Center gave me the option to repair dependencies (in fact it forced me to do so because it would be ‘unable to install other software until the problem was fixed’).
It worked without problems, and the error sign in the notification area disappeared.
answered Nov 29, 2013 at 19:27
ajoajo
3051 gold badge3 silver badges8 bronze badges
1
-
an error occurred please run package manager
I get this error message in the top right corner i was trying to install google chrome in terminal before i got this error the next day my wifi speeds are extremely slow work normal on any other devices
An error occurred,please run package manager from the right-click menu or apt-get in a terminal to see what is wrong. The error message was: ‘Error: Opening the cache (E:Malformed entry 1 in list file /etc/apt/sources.list.d/google-chrome.list (Suite), E:The list of sources could not be read.)’. This usually mean that your installed packages have unmet dependencies
looked everywhere for answers any help would be great TY
-
Re: an error occurred please run package manager
luger2; Hello — Welcome to the forum.
The system is telling you that it does not accept a fetch file : /etc/apt/sources.list.d/google-chrome.list .
Let’s see what the problem here is .
Post back — Between Code Tags — the output of terminal command:Code:
cat /etc/apt/sources.list.d/google-chrome.list
code tag tutorial:
http://ubuntuforums.org/showthread.p…8#post12776168ain’t nothing but a thing
-
Re: an error occurred please run package manager
-
Re: an error occurred please run package manager
You need to remove or disable that non [arch-amd64] entry
Here’s quick one-liner that will/should at least disable it.Code:
sudo sed -i 's/deb h/#deb h/g' /etc/apt/sources.list.d/google-chrome.list
-
Re: an error occurred please run package manager
i just tried this it didnt show anything after i hit enter
-
Re: an error occurred please run package manager
luger2; Well’
Originally Posted by luger2
i just tried this it didnt show anything after i hit enter
That is to be hoped for . In linux there is no response to a completed command . System does as told . Now if there is a problem then the system will so advise .
-
Re: an error occurred please run package manager
i dont understand do you mean thats all that can be done for this problem
and also i got a new error added it says
error: opening the cache (W:ignoring file google-chrome.list-30aug2016 ‘in directory’ /etc/apt/sources.list.d/ as it has an invalid filename extension, E:Type ‘stable’ is not known on line 3 in the source list /etc/apt/sources.list.d/google-chrome.list, E:The List of sources could not be read.)’.
-
Re: an error occurred please run package manager
Originally Posted by Bashing-om
luger2; Well’
That is to be hoped for . In linux there is no response to a completed command . System does as told . Now if there is a problem then the system will so advise .
That
Now open software updater or run
it should no longer show the error.
Basically the error is caused by the fact that google stopped support for 32-bit versions of chrome, but they had trouble fixing the repository information and so the normal deb http entry went looking for the 32-bit packages, which had since been removed and that caused a ton of trouble, and in the end they found it easier to simply add the [arch=amd64] to the line which forces it to only look for the amd64, or 64-bit, version, and now to see if I can make the sentence even longer…
Edit:
and also i got a new error added it says
error: opening the cache (W:ignoring file google-chrome.list-30aug2016 ‘in directory’ /etc/apt/sources.list.d/ as it has an invalid filename extension, E:Type ‘stable’ is not known on line 3 in the source list /etc/apt/sources.list.d/google-chrome.list, E:The List of sources could not be read.)’.was this
Code:
deb http://dl.google.com/linux/chrome/deb/ stable main deb http://dl.google.com/linux/chrome/deb/ stable main deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
the full file as is, like you copied and pasted it directly?
if so the error is right stable is invalid, so you need to disable that too.
like aboveCode:
sudo sed -i 's/^stable/#stable/g' /etc/apt/sources.list.d/google-chrome.list
the ^stable will make it only # comment out the stable entry that starts the line, and not the stable in the
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
line so that this
stable main
will look like this
#stable main
so the whole entry should look like thisCode:
#deb http://dl.google.com/linux/chrome/deb/ #stable main #deb http://dl.google.com/linux/chrome/deb/ stable main deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
or
runCode:
sudo nano /etc/apt/sources.list.d/google-chrome.list
and remove everything but the last line
so it looks like only
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable mainthen hit ctrl + X then hit Y and then enter, this will save and exit.
AS for the other thing, you can just delete the /etc/apt/sources.list.d/google-chrome.list-30aug2016 file, or do nothing, it’s only a warning and inconsequential.
Last edited by deadflowr; September 28th, 2017 at 09:29 PM.
Reason: again, with feeling
-
Re: an error occurred please run package manager
i got this and software updater does not open
N: Ignoring file ‘google-chrome.list-30Aug2016’ in directory ‘/etc/apt/sources.list.d/’ as it has an invalid filename extension
E: Type ‘stable’ is not known on line 3 in source list /etc/apt/sources.list.d/google-chrome.list
E: The list of sources could not be read.
-
Re: an error occurred please run package manager
Originally Posted by luger2
i got this and software updater does not open
N: Ignoring file ‘google-chrome.list-30Aug2016’ in directory ‘/etc/apt/sources.list.d/’ as it has an invalid filename extension
E: Type ‘stable’ is not known on line 3 in source list /etc/apt/sources.list.d/google-chrome.list
E: The list of sources could not be read.Read my last post, I edited it with more since you posted as i wrote your previous post.
Приветствую.
Помогите, плиз! (я новичок в Linux, Ubuntu 10.10)
Перестал работать Ubuntu Software Center? при выборе соотв строки меню начинается запуск, но закрывается не запустившись, не работает apt-get update:
~$ software-center
Traceback (most recent call last):
File «/usr/share/software-center/softwarecenter/apt/aptcache.py», line 105, in open
self._cache = apt.Cache(GtkMainIterationProgress())
File «/usr/lib/python2.6/dist-packages/apt/cache.py», line 88, in __init__
self.open(progress)
File «/usr/lib/python2.6/dist-packages/apt/cache.py», line 130, in open
self._list.read_main_list()
SystemError: E:Type ‘wget’ is not known on line 55 in source list /etc/apt/sources.list
2011-11-11 22:48:44,175 — softwarecenter.fixme — WARNING — logs to the root logger: ‘(‘/usr/share/software-center/softwarecenter/view/widgets/mkit_themes.py’, 675, ‘retrieve’)’
2011-11-11 22:48:44,175 — root — WARNING — No styling hints for eco were found… using Human hints.
Traceback (most recent call last):
File «/usr/bin/software-center», line 90, in <module>
app = SoftwareCenterApp(datadir, xapian_base_path, options, args)
File «/usr/share/software-center/softwarecenter/app.py», line 312, in __init__
self.view_switcher = ViewSwitcher(self.view_manager, datadir, self.db, self.cache, self.icons)
File «/usr/share/software-center/softwarecenter/view/viewswitcher.py», line 59, in __init__
store = ViewSwitcherList(view_manager, datadir, db, cache, icons)
File «/usr/share/software-center/softwarecenter/view/viewswitcher.py», line 321, in __init__
self._update_channel_list()
File «/usr/share/software-center/softwarecenter/view/viewswitcher.py», line 399, in _update_channel_list
self._update_channel_list_installed_view()
File «/usr/share/software-center/softwarecenter/view/viewswitcher.py», line 452, in _update_channel_list_installed_view
if (pkgname in self.cache and
File «/usr/share/software-center/softwarecenter/apt/aptcache.py», line 128, in __contains__
return self._cache.__contains__(k)
AttributeError: ‘NoneType’ object has no attribute ‘__contains__’
…
$ apt-get update
E: Type ‘wget’ is not known on line 55 in source list /etc/apt/sources.list
E: The list of sources could not be read.
помогите вылечить
Hi everyone. I’ve recently switched to Debian after a couple of years with Ubuntu. I’m running 64bit Debian Wheezy on a Dell XPS M1530. Today I’m getting the following message:
Code: Select all
A fatal error has been detected
Exception:
E:Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
Hovering over the Package Manager icon in the top panel produces the following:
Code: Select all
An error occurred, please run Package Manager from the right-click menu or apt-get in a terminal to see what is wrong. The error message was: ' Error: Marking the upgrade (E:Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.)'This usually means that your installed packages have unmet dependencies
Right clicking the icon, and then choosing «install all updates» produces a frightening list of things to be removed (wireless drivers, gnome-core, etc…) and a very small list of things to be installed. This option frightens me somewhat.
I found the following command in a bug report (from about 8 years ago) that was apparently related to the «E:Error» issue I am having and thought its output might be helpful in troubleshooting this issue:
Code: Select all
Log of apt-get dist-upgrade -o Debug::pkgProblemResolver=1
Mon May 2 07:49:22 2011
Reading package lists...
Building dependency tree...
Reading state information...
Starting
Starting 2
Investigating (0) libsdl1.2debian [ amd64 ] < 1.2.14-6.1 -> 1.2.14-6.3 > ( libs )
Broken libsdl1.2debian:amd64 Conflicts on libsdl1.2debian-alsa [ amd64 ] < 1.2.14-6.1 > ( libs )
Considering libsdl1.2debian-alsa:amd64 -2 as a solution to libsdl1.2debian:amd64 56
Added libsdl1.2debian-alsa:amd64 to the remove list
Fixing libsdl1.2debian:amd64 via remove of libsdl1.2debian-alsa:amd64
Investigating (0) gnome-keyring [ amd64 ] < 2.30.3-5 -> 3.0.0-3 > ( gnome )
Broken gnome-keyring:amd64 Breaks on seahorse-plugins [ amd64 ] < 2.30.1-3 -> 2.30.1-3+b1 > ( gnome ) (< 3.0)
Considering seahorse-plugins:amd64 0 as a solution to gnome-keyring:amd64 25
Added seahorse-plugins:amd64 to the remove list
Fixing gnome-keyring:amd64 via remove of seahorse-plugins:amd64
Investigating (0) liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Broken liblocale-gettext-perl:amd64 PreDepends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to liblocale-gettext-perl:amd64 18
Removing liblocale-gettext-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) libhtml-parser-perl [ amd64 ] < 3.68-1 > ( perl )
Broken libhtml-parser-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libhtml-parser-perl:amd64 16
Removing libhtml-parser-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Broken libtext-iconv-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-iconv-perl:amd64 15
Removing libtext-iconv-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Broken libtext-charwidth-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-charwidth-perl:amd64 14
Removing libtext-charwidth-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) libglib-perl [ amd64 ] < 2:1.223-1 > ( perl )
Broken libglib-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libglib-perl:amd64 13
Removing libglib-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Broken libtext-wrapi18n-perl:amd64 Depends on libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Considering libtext-charwidth-perl:amd64 14 as a solution to libtext-wrapi18n-perl:amd64 12
Removing libtext-wrapi18n-perl:amd64 rather than change libtext-charwidth-perl:amd64
Investigating (0) libgtk2-perl [ amd64 ] < 2:1.223-1 > ( perl )
Broken libgtk2-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libgtk2-perl:amd64 12
Removing libgtk2-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) dictionaries-common [ amd64 ] < 1.10.8 > ( text )
Broken dictionaries-common:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 15 as a solution to dictionaries-common:amd64 12
Removing dictionaries-common:amd64 rather than change libtext-iconv-perl:amd64
Investigating (0) aspell-en [ amd64 ] < 6.0-0-6 > ( text )
Broken aspell-en:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.49.2)
Considering dictionaries-common:amd64 12 as a solution to aspell-en:amd64 11
Removing aspell-en:amd64 rather than change dictionaries-common:amd64
Investigating (0) icedtea-netx [ amd64 ] < none -> 1.1~20110421-1 > ( java )
Broken icedtea-netx:amd64 Conflicts on openjdk-6-jre [ amd64 ] < 6b18-1.8.7-2 -> 6b18-1.8.7-3 > ( java ) (< 6b20-1.10~pre2-0ubuntu2)
Considering openjdk-6-jre:amd64 31 as a solution to icedtea-netx:amd64 11
Holding Back icedtea-netx:amd64 rather than change openjdk-6-jre:amd64
Investigating (0) libhttp-message-perl [ amd64 ] < 6.01-1 > ( perl )
Broken libhttp-message-perl:amd64 Depends on libhtml-parser-perl [ amd64 ] < 3.68-1 > ( perl )
Considering libhtml-parser-perl:amd64 16 as a solution to libhttp-message-perl:amd64 11
Removing libhttp-message-perl:amd64 rather than change libhtml-parser-perl:amd64
Investigating (0) tasksel [ amd64 ] < 2.89 > ( admin )
Broken tasksel:amd64 Depends on liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Considering liblocale-gettext-perl:amd64 18 as a solution to tasksel:amd64 10
Removing tasksel:amd64 rather than change liblocale-gettext-perl:amd64
Investigating (0) aspell [ amd64 ] < 0.60.6-6 > ( text )
Broken aspell:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (> 0.40)
Considering dictionaries-common:amd64 12 as a solution to aspell:amd64 8
Removing aspell:amd64 rather than change dictionaries-common:amd64
Investigating (0) libcairo-perl [ amd64 ] < 1.070-2 > ( perl )
Broken libcairo-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libcairo-perl:amd64 7
Removing libcairo-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs )
Broken libperl5.10:amd64 Depends on perl-base [ amd64 ] < 5.10.1-20 -> 5.12.3-6 > ( perl ) (= 5.10.1-20)
Considering perl-base:amd64 5324 as a solution to libperl5.10:amd64 7
Removing libperl5.10:amd64 rather than change perl-base:amd64
Investigating (0) module-assistant [ amd64 ] < 0.11.3 > ( kernel )
Broken module-assistant:amd64 Depends on libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Considering libtext-wrapi18n-perl:amd64 12 as a solution to module-assistant:amd64 6
Removing module-assistant:amd64 rather than change libtext-wrapi18n-perl:amd64
Investigating (0) libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs )
Broken libsnmp15:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 7 as a solution to libsnmp15:amd64 5
Removing libsnmp15:amd64 rather than change libperl5.10:amd64
Investigating (0) libuuid-perl [ amd64 ] < 0.02-4 > ( perl )
Broken libuuid-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libuuid-perl:amd64 5
Removing libuuid-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libpango-perl [ amd64 ] < 1.221-2 > ( perl )
Broken libpango-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libpango-perl:amd64 5
Removing libpango-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libhtml-tree-perl [ amd64 ] < 4.2-1 > ( perl )
Broken libhtml-tree-perl:amd64 Depends on libhtml-parser-perl [ amd64 ] < 3.68-1 > ( perl )
Considering libhtml-parser-perl:amd64 16 as a solution to libhtml-tree-perl:amd64 5
Removing libhtml-tree-perl:amd64 rather than change libhtml-parser-perl:amd64
Investigating (0) linux-base [ amd64 ] < 3.2 > ( kernel )
Broken linux-base:amd64 Depends on libuuid-perl [ amd64 ] < 0.02-4 > ( perl )
Considering libuuid-perl:amd64 5 as a solution to linux-base:amd64 5
Removing linux-base:amd64 rather than change libuuid-perl:amd64
Investigating (0) libfont-freetype-perl [ amd64 ] < 0.03-1 > ( perl )
Broken libfont-freetype-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libfont-freetype-perl:amd64 5
Removing libfont-freetype-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) libwww-perl [ amd64 ] < 6.01-3 > ( perl )
Broken libwww-perl:amd64 Depends on libhtml-parser-perl [ amd64 ] < 3.68-1 > ( perl )
Considering libhtml-parser-perl:amd64 16 as a solution to libwww-perl:amd64 4
Removing libwww-perl:amd64 rather than change libhtml-parser-perl:amd64
Investigating (0) libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Broken libnet-dbus-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libnet-dbus-perl:amd64 3
Removing libnet-dbus-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) linux-image-2.6.32-5-amd64 [ amd64 ] < 2.6.32-31 > ( kernel )
Broken linux-image-2.6.32-5-amd64:amd64 Depends on linux-base [ amd64 ] < 3.2 > ( kernel ) (>= 2.6.32-31)
Considering linux-base:amd64 5 as a solution to linux-image-2.6.32-5-amd64:amd64 3
Removing linux-image-2.6.32-5-amd64:amd64 rather than change linux-base:amd64
Investigating (0) libhttp-daemon-perl [ amd64 ] < 6.00-1 > ( perl )
Broken libhttp-daemon-perl:amd64 Depends on libhttp-message-perl [ amd64 ] < 6.01-1 > ( perl )
Considering libhttp-message-perl:amd64 11 as a solution to libhttp-daemon-perl:amd64 3
Removing libhttp-daemon-perl:amd64 rather than change libhttp-message-perl:amd64
Investigating (0) libalgorithm-diff-xs-perl [ amd64 ] < 0.04-1 > ( perl )
Broken libalgorithm-diff-xs-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libalgorithm-diff-xs-perl:amd64 3
Removing libalgorithm-diff-xs-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libhttp-negotiate-perl [ amd64 ] < 6.00-2 > ( perl )
Broken libhttp-negotiate-perl:amd64 Depends on libhttp-message-perl [ amd64 ] < 6.01-1 > ( perl )
Considering libhttp-message-perl:amd64 11 as a solution to libhttp-negotiate-perl:amd64 3
Removing libhttp-negotiate-perl:amd64 rather than change libhttp-message-perl:amd64
Investigating (0) libhtml-form-perl [ amd64 ] < 6.00-1 > ( perl )
Broken libhtml-form-perl:amd64 Depends on libhtml-parser-perl [ amd64 ] < 3.68-1 > ( perl )
Considering libhtml-parser-perl:amd64 16 as a solution to libhtml-form-perl:amd64 3
Removing libhtml-form-perl:amd64 rather than change libhtml-parser-perl:amd64
Investigating (0) libcryptui0a [ amd64 ] < none -> 3.0.0-1 > ( libs )
Broken libcryptui0a:amd64 Conflicts on libcryptui0 [ amd64 ] < 2.30.1-2 > ( libs )
Considering libcryptui0:amd64 -1 as a solution to libcryptui0a:amd64 3
Added libcryptui0:amd64 to the remove list
Fixing libcryptui0a:amd64 via remove of libcryptui0:amd64
Investigating (0) libhttp-cookies-perl [ amd64 ] < 6.00-2 > ( perl )
Broken libhttp-cookies-perl:amd64 Depends on libhttp-message-perl [ amd64 ] < 6.01-1 > ( perl )
Considering libhttp-message-perl:amd64 11 as a solution to libhttp-cookies-perl:amd64 3
Removing libhttp-cookies-perl:amd64 rather than change libhttp-message-perl:amd64
Investigating (0) libhtml-format-perl [ amd64 ] < 2.05-1 > ( perl )
Broken libhtml-format-perl:amd64 Depends on libhtml-tree-perl [ amd64 ] < 4.2-1 > ( perl )
Considering libhtml-tree-perl:amd64 5 as a solution to libhtml-format-perl:amd64 3
Removing libhtml-format-perl:amd64 rather than change libhtml-tree-perl:amd64
Investigating (0) nvidia-glx [ amd64 ] < 260.19.44-1 > ( non-free/x11 )
Broken nvidia-glx:amd64 Depends on xorg-video-abi-8 [ amd64 ] < none > ( none )
Considering xserver-xorg-core:amd64 70 as a solution to nvidia-glx:amd64 3
Broken nvidia-glx:amd64 Depends on xorg-video-abi-6.0 [ amd64 ] < none > ( none )
Broken nvidia-glx:amd64 Depends on xserver-xorg-core [ amd64 ] < 2:1.9.5-1 -> 2:1.10.1-2 > ( x11 ) (< 2:1.7.7)
Or group remove for nvidia-glx:amd64
Investigating (0) linux-image-2.6.38-2-amd64 [ amd64 ] < 2.6.38-4 > ( kernel )
Broken linux-image-2.6.38-2-amd64:amd64 Depends on linux-base [ amd64 ] < 3.2 > ( kernel ) (>= 3~)
Considering linux-base:amd64 5 as a solution to linux-image-2.6.38-2-amd64:amd64 3
Removing linux-image-2.6.38-2-amd64:amd64 rather than change linux-base:amd64
Investigating (0) libdigest-sha1-perl [ amd64 ] < 2.13-1 > ( perl )
Broken libdigest-sha1-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libdigest-sha1-perl:amd64 2
Removing libdigest-sha1-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) libgnome2-vfs-perl [ amd64 ] < 1.081-1 > ( perl )
Broken libgnome2-vfs-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libgnome2-vfs-perl:amd64 2
Removing libgnome2-vfs-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) doc-base [ amd64 ] < 0.10.1 > ( doc )
Broken doc-base:amd64 Depends on libuuid-perl [ amd64 ] < 0.02-4 > ( perl )
Considering libuuid-perl:amd64 5 as a solution to doc-base:amd64 2
Removing doc-base:amd64 rather than change libuuid-perl:amd64
Investigating (0) libxml-parser-perl [ amd64 ] < 2.36-1.1+b1 > ( perl )
Broken libxml-parser-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libxml-parser-perl:amd64 2
Removing libxml-parser-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) mythes-en-us [ amd64 ] < 1:3.3.0-3 > ( text )
Broken mythes-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 12 as a solution to mythes-en-us:amd64 2
Broken mythes-en-us:amd64 Depends on openoffice.org-updatedicts [ amd64 ] < none > ( none )
Considering dictionaries-common:amd64 12 as a solution to mythes-en-us:amd64 2
Or group remove for mythes-en-us:amd64
Investigating (0) xserver-xorg-video-mach64 [ amd64 ] < 6.8.2-5 > ( x11 )
Broken xserver-xorg-video-mach64:amd64 Depends on xorg-video-abi-8 [ amd64 ] < none > ( none )
Considering xserver-xorg-core:amd64 70 as a solution to xserver-xorg-video-mach64:amd64 2
Removing xserver-xorg-video-mach64:amd64 rather than change xorg-video-abi-8:amd64
Investigating (0) console-setup-linux [ amd64 ] < none -> 1.73 > ( utils )
Broken console-setup-linux:amd64 Conflicts on console-terminus [ amd64 ] < 4.30-2 > ( fonts )
Considering console-terminus:amd64 0 as a solution to console-setup-linux:amd64 2
Added console-terminus:amd64 to the remove list
Fixing console-setup-linux:amd64 via remove of console-terminus:amd64
Investigating (0) libgnome2-canvas-perl [ amd64 ] < 1.002-2 > ( perl )
Broken libgnome2-canvas-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libgnome2-canvas-perl:amd64 2
Removing libgnome2-canvas-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) xserver-xorg-input-wacom [ amd64 ] < 0.10.10+20110203-1 > ( x11 )
Broken xserver-xorg-input-wacom:amd64 Depends on xorg-input-abi-11 [ amd64 ] < none > ( none )
Considering xserver-xorg-core:amd64 70 as a solution to xserver-xorg-input-wacom:amd64 2
Removing xserver-xorg-input-wacom:amd64 rather than change xorg-input-abi-11:amd64
Investigating (0) libgnome2-perl [ amd64 ] < 1.042-2 > ( perl )
Broken libgnome2-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libgnome2-perl:amd64 2
Removing libgnome2-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (0) perlmagick [ amd64 ] < 8:6.6.0.4-3 > ( perl )
Broken perlmagick:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to perlmagick:amd64 2
Removing perlmagick:amd64 rather than change perlapi-5.10.1:amd64
Investigating (0) python-gpod [ amd64 ] < 0.8.0-2 -> 0.8.0-3 > ( python )
Broken python-gpod:amd64 Depends on python2.7-mutagen [ amd64 ] < none > ( none )
Investigating (0) libxml-twig-perl [ amd64 ] < 1:3.37-1 > ( perl )
Broken libxml-twig-perl:amd64 Depends on libxml-parser-perl [ amd64 ] < 2.36-1.1+b1 > ( perl )
Considering libxml-parser-perl:amd64 2 as a solution to libxml-twig-perl:amd64 2
Removing libxml-twig-perl:amd64 rather than change libxml-parser-perl:amd64
Investigating (0) myspell-en-us [ amd64 ] < 1:3.3.0-3 > ( text )
Broken myspell-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 12 as a solution to myspell-en-us:amd64 1
Broken myspell-en-us:amd64 Depends on openoffice.org-updatedicts [ amd64 ] < none > ( none )
Considering dictionaries-common:amd64 12 as a solution to myspell-en-us:amd64 1
Or group remove for myspell-en-us:amd64
Investigating (0) gnome-desktop-environment [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome )
Broken gnome-desktop-environment:amd64 Depends on libgnome2-perl [ amd64 ] < 1.042-2 > ( perl ) (>= 1.042)
Considering libgnome2-perl:amd64 2 as a solution to gnome-desktop-environment:amd64 1
Removing gnome-desktop-environment:amd64 rather than change libgnome2-perl:amd64
Investigating (0) linux-image-2.6-amd64 [ amd64 ] < 2.6.38+33 > ( kernel )
Broken linux-image-2.6-amd64:amd64 Depends on linux-image-2.6.38-2-amd64 [ amd64 ] < 2.6.38-4 > ( kernel )
Considering linux-image-2.6.38-2-amd64:amd64 3 as a solution to linux-image-2.6-amd64:amd64 0
Removing linux-image-2.6-amd64:amd64 rather than change linux-image-2.6.38-2-amd64:amd64
Investigating (0) icedtea-plugin [ amd64 ] < none -> 1.1~20110421-1 > ( web )
Broken icedtea-plugin:amd64 Depends on icedtea-netx [ amd64 ] < none -> 1.1~20110421-1 > ( java ) (= 1.1~20110421-1)
Considering icedtea-netx:amd64 11 as a solution to icedtea-plugin:amd64 0
Holding Back icedtea-plugin:amd64 rather than change icedtea-netx:amd64
Investigating (0) gnome [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome )
Broken gnome:amd64 Depends on gnome-desktop-environment [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome ) (= 1:2.30+10)
Considering gnome-desktop-environment:amd64 1 as a solution to gnome:amd64 0
Removing gnome:amd64 rather than change gnome-desktop-environment:amd64
Investigating (0) broadcom-sta-modules-2.6.38-2-amd64 [ amd64 ] < 5.100.82.38-1+2.6.38-3 > ( non-free/admin )
Broken broadcom-sta-modules-2.6.38-2-amd64:amd64 Depends on linux-modules-2.6.38-2-amd64 [ amd64 ] < none > ( none )
Considering linux-image-2.6.38-2-amd64:amd64 3 as a solution to broadcom-sta-modules-2.6.38-2-amd64:amd64 -1
Broken broadcom-sta-modules-2.6.38-2-amd64:amd64 Depends on linux-image-2.6.38-2-amd64 [ amd64 ] < 2.6.38-4 > ( kernel )
Considering linux-image-2.6.38-2-amd64:amd64 3 as a solution to broadcom-sta-modules-2.6.38-2-amd64:amd64 -1
Or group remove for broadcom-sta-modules-2.6.38-2-amd64:amd64
Investigating (0) broadcom-sta-modules-2.6.32-5-amd64 [ amd64 ] < 5.60.48.36-2+2.6.32-31 > ( non-free/admin )
Broken broadcom-sta-modules-2.6.32-5-amd64:amd64 Depends on linux-modules-2.6.32-5-amd64 [ amd64 ] < none > ( none )
Considering linux-image-2.6.32-5-amd64:amd64 3 as a solution to broadcom-sta-modules-2.6.32-5-amd64:amd64 -1
Broken broadcom-sta-modules-2.6.32-5-amd64:amd64 Depends on linux-image-2.6.32-5-amd64 [ amd64 ] < 2.6.32-31 > ( kernel )
Considering linux-image-2.6.32-5-amd64:amd64 3 as a solution to broadcom-sta-modules-2.6.32-5-amd64:amd64 -1
Or group remove for broadcom-sta-modules-2.6.32-5-amd64:amd64
Investigating (0) openoffice.org-thesaurus-en-us [ amd64 ] < 1:3.3.0-10 > ( text )
Broken openoffice.org-thesaurus-en-us:amd64 Depends on mythes-en-us [ amd64 ] < 1:3.3.0-3 > ( text )
Considering mythes-en-us:amd64 2 as a solution to openoffice.org-thesaurus-en-us:amd64 -1
Removing openoffice.org-thesaurus-en-us:amd64 rather than change mythes-en-us:amd64
Investigating (0) icedtea6-plugin [ amd64 ] < 6b18-1.8.7-2 -> 6b21.1~20110421-1 > ( web )
Broken icedtea6-plugin:amd64 Depends on icedtea-plugin [ amd64 ] < none -> 1.1~20110421-1 > ( web )
Considering icedtea-plugin:amd64 0 as a solution to icedtea6-plugin:amd64 -1
Removing icedtea6-plugin:amd64 rather than change icedtea-plugin:amd64
Investigating (1) debconf-i18n [ amd64 ] < 1.5.39 > ( localization )
Broken debconf-i18n:amd64 Depends on liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Considering liblocale-gettext-perl:amd64 18 as a solution to debconf-i18n:amd64 79
Added liblocale-gettext-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 15 as a solution to debconf-i18n:amd64 79
Added libtext-iconv-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Considering libtext-wrapi18n-perl:amd64 12 as a solution to debconf-i18n:amd64 79
Added libtext-wrapi18n-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Considering libtext-charwidth-perl:amd64 14 as a solution to debconf-i18n:amd64 79
Added libtext-charwidth-perl:amd64 to the remove list
Fixing debconf-i18n:amd64 via keep of liblocale-gettext-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-iconv-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-wrapi18n-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-charwidth-perl:amd64
Investigating (1) vim-gnome [ amd64 ] < 2:7.3.154+hg~74503f6ee649-2 > ( editors )
Broken vim-gnome:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 7 as a solution to vim-gnome:amd64 26
Added libperl5.10:amd64 to the remove list
Fixing vim-gnome:amd64 via keep of libperl5.10:amd64
Investigating (1) liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Broken liblocale-gettext-perl:amd64 PreDepends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to liblocale-gettext-perl:amd64 18
Removing liblocale-gettext-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (1) libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Broken libtext-iconv-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-iconv-perl:amd64 15
Removing libtext-iconv-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (1) libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Broken libtext-charwidth-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-charwidth-perl:amd64 14
Removing libtext-charwidth-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (1) libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Broken libtext-wrapi18n-perl:amd64 Depends on libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Considering libtext-charwidth-perl:amd64 14 as a solution to libtext-wrapi18n-perl:amd64 12
Removing libtext-wrapi18n-perl:amd64 rather than change libtext-charwidth-perl:amd64
Investigating (1) tasksel-data [ amd64 ] < 2.89 > ( admin )
Broken tasksel-data:amd64 Depends on tasksel [ amd64 ] < 2.89 > ( admin )
Considering tasksel:amd64 10 as a solution to tasksel-data:amd64 10
Removing tasksel-data:amd64 rather than change tasksel:amd64
Investigating (1) libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs )
Broken libhpmud0:amd64 Depends on libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs ) (>= 5.4.3~dfsg)
Considering libsnmp15:amd64 5 as a solution to libhpmud0:amd64 9
Added libsnmp15:amd64 to the remove list
Fixing libhpmud0:amd64 via keep of libsnmp15:amd64
Investigating (1) libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs )
Broken libperl5.10:amd64 Depends on perl-base [ amd64 ] < 5.10.1-20 -> 5.12.3-6 > ( perl ) (= 5.10.1-20)
Considering perl-base:amd64 5324 as a solution to libperl5.10:amd64 7
Removing libperl5.10:amd64 rather than change perl-base:amd64
Investigating (1) libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs )
Broken libsnmp15:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 7 as a solution to libsnmp15:amd64 5
Removing libsnmp15:amd64 rather than change libperl5.10:amd64
Investigating (1) system-tools-backends [ amd64 ] < 2.10.1-2 > ( admin )
Broken system-tools-backends:amd64 Depends on libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Considering libnet-dbus-perl:amd64 3 as a solution to system-tools-backends:amd64 5
Added libnet-dbus-perl:amd64 to the remove list
Fixing system-tools-backends:amd64 via keep of libnet-dbus-perl:amd64
Investigating (1) libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Broken libnet-dbus-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libnet-dbus-perl:amd64 3
Removing libnet-dbus-perl:amd64 rather than change perlapi-5.10.1:amd64
Investigating (1) xserver-xorg-video-ati [ amd64 ] < 1:6.14.1-1 -> 1:6.14.1-1+b1 > ( x11 )
Broken xserver-xorg-video-ati:amd64 Depends on xserver-xorg-video-mach64 [ amd64 ] < 6.8.2-5 > ( x11 )
Considering xserver-xorg-video-mach64:amd64 2 as a solution to xserver-xorg-video-ati:amd64 2
Removing xserver-xorg-video-ati:amd64 rather than change xserver-xorg-video-mach64:amd64
Investigating (1) hunspell [ amd64 ] < 1.2.14-4 > ( text )
Broken hunspell:amd64 Depends on hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Considering hunspell-en-us:amd64 2 as a solution to hunspell:amd64 2
Try Installing hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text ) before changing hunspell:amd64
Try to Re-Instate (1) python-gpod:amd64
Investigating (1) python-gpod [ amd64 ] < 0.8.0-2 -> 0.8.0-3 > ( python )
Broken python-gpod:amd64 Depends on libgpod4 [ amd64 ] < 0.8.0-2 -> 0.8.0-3 > ( libs ) (= 0.8.0-2)
Considering libgpod4:amd64 8 as a solution to python-gpod:amd64 2
Removing python-gpod:amd64 rather than change libgpod4:amd64
Investigating (2) debconf-i18n [ amd64 ] < 1.5.39 > ( localization )
Broken debconf-i18n:amd64 Depends on liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Considering liblocale-gettext-perl:amd64 18 as a solution to debconf-i18n:amd64 79
Added liblocale-gettext-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 15 as a solution to debconf-i18n:amd64 79
Added libtext-iconv-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Considering libtext-wrapi18n-perl:amd64 12 as a solution to debconf-i18n:amd64 79
Added libtext-wrapi18n-perl:amd64 to the remove list
Broken debconf-i18n:amd64 Depends on libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Considering libtext-charwidth-perl:amd64 14 as a solution to debconf-i18n:amd64 79
Added libtext-charwidth-perl:amd64 to the remove list
Fixing debconf-i18n:amd64 via keep of liblocale-gettext-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-iconv-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-wrapi18n-perl:amd64
Fixing debconf-i18n:amd64 via keep of libtext-charwidth-perl:amd64
Investigating (2) vim-gnome [ amd64 ] < 2:7.3.154+hg~74503f6ee649-2 > ( editors )
Broken vim-gnome:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 7 as a solution to vim-gnome:amd64 26
Added libperl5.10:amd64 to the remove list
Fixing vim-gnome:amd64 via keep of libperl5.10:amd64
Investigating (2) liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Broken liblocale-gettext-perl:amd64 PreDepends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to liblocale-gettext-perl:amd64 79
Removing liblocale-gettext-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (2) libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Broken libtext-iconv-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-iconv-perl:amd64 79
Removing libtext-iconv-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (2) libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Broken libtext-charwidth-perl:amd64 Depends on perlapi-5.10.0 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libtext-charwidth-perl:amd64 79
Removing libtext-charwidth-perl:amd64 rather than change perlapi-5.10.0:amd64
Investigating (2) libtext-wrapi18n-perl [ amd64 ] < 0.06-7 > ( perl )
Broken libtext-wrapi18n-perl:amd64 Depends on libtext-charwidth-perl [ amd64 ] < 0.04-6 > ( perl )
Considering libtext-charwidth-perl:amd64 5324 as a solution to libtext-wrapi18n-perl:amd64 79
Removing libtext-wrapi18n-perl:amd64 rather than change libtext-charwidth-perl:amd64
Investigating (2) dictionaries-common [ amd64 ] < 1.10.8 > ( text )
Broken dictionaries-common:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 5324 as a solution to dictionaries-common:amd64 12
Removing dictionaries-common:amd64 rather than change libtext-iconv-perl:amd64
Investigating (2) libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs )
Broken libhpmud0:amd64 Depends on libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs ) (>= 5.4.3~dfsg)
Considering libsnmp15:amd64 5 as a solution to libhpmud0:amd64 9
Added libsnmp15:amd64 to the remove list
Fixing libhpmud0:amd64 via keep of libsnmp15:amd64
Investigating (2) libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs )
Broken libperl5.10:amd64 Depends on perl-base [ amd64 ] < 5.10.1-20 -> 5.12.3-6 > ( perl ) (= 5.10.1-20)
Considering perl-base:amd64 5324 as a solution to libperl5.10:amd64 26
Removing libperl5.10:amd64 rather than change perl-base:amd64
Investigating (2) libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs )
Broken libsnmp15:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 5324 as a solution to libsnmp15:amd64 9
Removing libsnmp15:amd64 rather than change libperl5.10:amd64
Investigating (2) system-tools-backends [ amd64 ] < 2.10.1-2 > ( admin )
Broken system-tools-backends:amd64 Depends on libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Considering libnet-dbus-perl:amd64 3 as a solution to system-tools-backends:amd64 5
Added libnet-dbus-perl:amd64 to the remove list
Fixing system-tools-backends:amd64 via keep of libnet-dbus-perl:amd64
Investigating (2) xserver-xorg-video-all [ amd64 ] < 1:7.6+6 > ( x11 )
Broken xserver-xorg-video-all:amd64 Depends on xserver-xorg-video-ati [ amd64 ] < 1:6.14.1-1 -> 1:6.14.1-1+b1 > ( x11 )
Considering xserver-xorg-video-ati:amd64 2 as a solution to xserver-xorg-video-all:amd64 4
Added xserver-xorg-video-ati:amd64 to the remove list
Fixing xserver-xorg-video-all:amd64 via keep of xserver-xorg-video-ati:amd64
Investigating (2) libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Broken libnet-dbus-perl:amd64 Depends on perlapi-5.10.1 [ amd64 ] < none > ( none )
Considering perl-base:amd64 5324 as a solution to libnet-dbus-perl:amd64 5
Removing libnet-dbus-perl:amd64 rather than change perlapi-5.10.1:amd64
Try to Re-Instate (2) xserver-xorg-video-ati:amd64
Investigating (2) xserver-xorg-video-ati [ amd64 ] < 1:6.14.1-1 -> 1:6.14.1-1+b1 > ( x11 )
Broken xserver-xorg-video-ati:amd64 Depends on xorg-video-abi-8 [ amd64 ] < none > ( none )
Considering xserver-xorg-core:amd64 70 as a solution to xserver-xorg-video-ati:amd64 4
Removing xserver-xorg-video-ati:amd64 rather than change xorg-video-abi-8:amd64
Investigating (2) hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Broken hunspell-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 5324 as a solution to hunspell-en-us:amd64 2
Holding Back hunspell-en-us:amd64 rather than change dictionaries-common:amd64
Investigating (3) debconf-i18n [ amd64 ] < 1.5.39 > ( localization )
Broken debconf-i18n:amd64 Depends on liblocale-gettext-perl [ amd64 ] < 1.05-6 > ( perl )
Considering liblocale-gettext-perl:amd64 5324 as a solution to debconf-i18n:amd64 79
Removing debconf-i18n:amd64 rather than change liblocale-gettext-perl:amd64
Investigating (3) vim-gnome [ amd64 ] < 2:7.3.154+hg~74503f6ee649-2 > ( editors )
Broken vim-gnome:amd64 Depends on libperl5.10 [ amd64 ] < 5.10.1-20 > ( libs ) (>= 5.10.1)
Considering libperl5.10:amd64 5324 as a solution to vim-gnome:amd64 26
Removing vim-gnome:amd64 rather than change libperl5.10:amd64
Investigating (3) libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs )
Broken libhpmud0:amd64 Depends on libsnmp15 [ amd64 ] < 5.4.3~dfsg-2 > ( libs ) (>= 5.4.3~dfsg)
Considering libsnmp15:amd64 5324 as a solution to libhpmud0:amd64 9
Removing libhpmud0:amd64 rather than change libsnmp15:amd64
Investigating (3) system-tools-backends [ amd64 ] < 2.10.1-2 > ( admin )
Broken system-tools-backends:amd64 Depends on libnet-dbus-perl [ amd64 ] < 0.33.6-2 > ( perl )
Considering libnet-dbus-perl:amd64 5324 as a solution to system-tools-backends:amd64 5
Removing system-tools-backends:amd64 rather than change libnet-dbus-perl:amd64
Investigating (3) xserver-xorg-video-all [ amd64 ] < 1:7.6+6 > ( x11 )
Broken xserver-xorg-video-all:amd64 Depends on xserver-xorg-video-ati [ amd64 ] < 1:6.14.1-1 -> 1:6.14.1-1+b1 > ( x11 )
Considering xserver-xorg-video-ati:amd64 70 as a solution to xserver-xorg-video-all:amd64 4
Removing xserver-xorg-video-all:amd64 rather than change xserver-xorg-video-ati:amd64
Investigating (3) libsane-hpaio [ amd64 ] < 3.11.1-3 > ( libs )
Broken libsane-hpaio:amd64 Depends on libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs )
Considering libhpmud0:amd64 5324 as a solution to libsane-hpaio:amd64 3
Removing libsane-hpaio:amd64 rather than change libhpmud0:amd64
Investigating (3) hplip-cups [ amd64 ] < 3.11.1-3 > ( text )
Broken hplip-cups:amd64 Depends on libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs )
Considering libhpmud0:amd64 5324 as a solution to hplip-cups:amd64 3
Removing hplip-cups:amd64 rather than change libhpmud0:amd64
Investigating (3) hpijs [ amd64 ] < 3.11.1-3 > ( text )
Broken hpijs:amd64 Depends on libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs ) (= 3.11.1-3)
Considering libhpmud0:amd64 5324 as a solution to hpijs:amd64 3
Removing hpijs:amd64 rather than change libhpmud0:amd64
Investigating (3) hplip [ amd64 ] < 3.11.1-3 > ( utils )
Broken hplip:amd64 Depends on libhpmud0 [ amd64 ] < 3.11.1-3 > ( libs ) (= 3.11.1-3)
Considering libhpmud0:amd64 5324 as a solution to hplip:amd64 3
Removing hplip:amd64 rather than change libhpmud0:amd64
Investigating (3) hunspell [ amd64 ] < 1.2.14-4 > ( text )
Broken hunspell:amd64 Depends on hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Considering hunspell-en-us:amd64 2 as a solution to hunspell:amd64 2
Try Installing hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text ) before changing hunspell:amd64
Investigating (3) gnome-system-tools [ amd64 ] < 2.30.2-2 > ( gnome )
Broken gnome-system-tools:amd64 Depends on system-tools-backends [ amd64 ] < 2.10.1-2 > ( admin ) (>= 2.9.4)
Considering system-tools-backends:amd64 5324 as a solution to gnome-system-tools:amd64 2
Removing gnome-system-tools:amd64 rather than change system-tools-backends:amd64
Investigating (3) hplip-gui [ amd64 ] < 3.11.1-3 > ( utils )
Broken hplip-gui:amd64 Depends on hplip [ amd64 ] < 3.11.1-3 > ( utils ) (>= 3.11.1-3)
Considering hplip:amd64 5324 as a solution to hplip-gui:amd64 0
Removing hplip-gui:amd64 rather than change hplip:amd64
Investigating (4) dictionaries-common [ amd64 ] < 1.10.8 > ( text )
Broken dictionaries-common:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 5324 as a solution to dictionaries-common:amd64 5324
Removing dictionaries-common:amd64 rather than change libtext-iconv-perl:amd64
Investigating (4) liboobs-1-4 [ amd64 ] < 2.30.1-1 > ( libs )
Broken liboobs-1-4:amd64 Depends on system-tools-backends [ amd64 ] < 2.10.1-2 > ( admin ) (>= 2.9.2)
Considering system-tools-backends:amd64 5324 as a solution to liboobs-1-4:amd64 5
Removing liboobs-1-4:amd64 rather than change system-tools-backends:amd64
Investigating (4) hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Broken hunspell-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 5324 as a solution to hunspell-en-us:amd64 2
Holding Back hunspell-en-us:amd64 rather than change dictionaries-common:amd64
Investigating (5) gnome-applets [ amd64 ] < 2.30.0-3 > ( gnome )
Broken gnome-applets:amd64 Depends on liboobs-1-4 [ amd64 ] < 2.30.1-1 > ( libs ) (>= 2.30.0)
Considering liboobs-1-4:amd64 5324 as a solution to gnome-applets:amd64 9
Removing gnome-applets:amd64 rather than change liboobs-1-4:amd64
Investigating (5) gnome-core [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome )
Broken gnome-core:amd64 Depends on gnome-applets [ amd64 ] < 2.30.0-3 > ( gnome ) (>= 2.30)
Considering gnome-applets:amd64 5324 as a solution to gnome-core:amd64 4
Removing gnome-core:amd64 rather than change gnome-applets:amd64
Investigating (5) gnome-accessibility [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome )
Broken gnome-accessibility:amd64 Depends on gnome-core [ amd64 ] < 1:2.30+7 -> 1:2.30+10 > ( gnome ) (>= 1:2.30+10)
Considering gnome-core:amd64 5324 as a solution to gnome-accessibility:amd64 2
Removing gnome-accessibility:amd64 rather than change gnome-core:amd64
Investigating (5) hunspell [ amd64 ] < 1.2.14-4 > ( text )
Broken hunspell:amd64 Depends on hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Considering hunspell-en-us:amd64 2 as a solution to hunspell:amd64 2
Try Installing hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text ) before changing hunspell:amd64
Investigating (6) dictionaries-common [ amd64 ] < 1.10.8 > ( text )
Broken dictionaries-common:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 5324 as a solution to dictionaries-common:amd64 5324
Removing dictionaries-common:amd64 rather than change libtext-iconv-perl:amd64
Investigating (6) hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Broken hunspell-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 5324 as a solution to hunspell-en-us:amd64 2
Holding Back hunspell-en-us:amd64 rather than change dictionaries-common:amd64
Investigating (7) hunspell [ amd64 ] < 1.2.14-4 > ( text )
Broken hunspell:amd64 Depends on hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Considering hunspell-en-us:amd64 2 as a solution to hunspell:amd64 2
Try Installing hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text ) before changing hunspell:amd64
Investigating (8) dictionaries-common [ amd64 ] < 1.10.8 > ( text )
Broken dictionaries-common:amd64 Depends on libtext-iconv-perl [ amd64 ] < 1.7-2 > ( perl )
Considering libtext-iconv-perl:amd64 5324 as a solution to dictionaries-common:amd64 5324
Removing dictionaries-common:amd64 rather than change libtext-iconv-perl:amd64
Investigating (8) hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Broken hunspell-en-us:amd64 Depends on dictionaries-common [ amd64 ] < 1.10.8 > ( text ) (>= 0.10)
Considering dictionaries-common:amd64 5324 as a solution to hunspell-en-us:amd64 2
Holding Back hunspell-en-us:amd64 rather than change dictionaries-common:amd64
Investigating (9) hunspell [ amd64 ] < 1.2.14-4 > ( text )
Broken hunspell:amd64 Depends on hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text )
Considering hunspell-en-us:amd64 2 as a solution to hunspell:amd64 2
Try Installing hunspell-en-us [ amd64 ] < none -> 20070829-4 > ( text ) before changing hunspell:amd64
Done
The following packages have unmet dependencies:
dictionaries-common : Depends: libtext-iconv-perl but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
apt-get died with exit status 100
Mon May 2 07:49:22 2011
----------------
Running the following as root:
Returns nothing.
apt-get upgrade returns:
Code: Select all
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages have been kept back:
audacity audacity-data biblatex chromium-browser chromium-browser-inspector console-setup cpp empathy empathy-common g++ gcc gcj-jre gcj-jre-headless
gnome gnome-accessibility gnome-core gnome-desktop-environment gnome-keyring gwibber icedtea6-plugin keyboard-configuration libgcj-bc libgnome-keyring0
libgpod4 libgtkmm-2.4-1c2a libsdl1.2debian nautilus-sendto-empathy openjdk-6-jre perl perl-base perl-doc perl-modules python-cairo python-glade2
python-gobject python-gpod python-gtk2 python-gtkglext1 python-gtksourceview2 seahorse seahorse-plugins tuxguitar tuxguitar-alsa tuxguitar-jsa
tuxguitar-oss xserver-xorg-core xserver-xorg-input-evdev xserver-xorg-input-synaptics xserver-xorg-video-apm xserver-xorg-video-ark xserver-xorg-video-ati
xserver-xorg-video-chips xserver-xorg-video-cirrus xserver-xorg-video-fbdev xserver-xorg-video-i128 xserver-xorg-video-intel xserver-xorg-video-mga
xserver-xorg-video-neomagic xserver-xorg-video-nouveau xserver-xorg-video-openchrome xserver-xorg-video-r128 xserver-xorg-video-radeon
xserver-xorg-video-rendition xserver-xorg-video-s3 xserver-xorg-video-s3virge xserver-xorg-video-savage xserver-xorg-video-siliconmotion
xserver-xorg-video-sis xserver-xorg-video-sisusb xserver-xorg-video-tdfx xserver-xorg-video-trident xserver-xorg-video-tseng xserver-xorg-video-vesa
xserver-xorg-video-vmware xserver-xorg-video-voodoo
0 upgraded, 0 newly installed, 0 to remove and 75 not upgraded.
N: Ignoring file 'spideroak.com.sources.list.save' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'google-talkplugin.list.save' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
I’m at a loss for how to proceed safely and effectively. Any advice would be very much appreciated. If I need to share any more outputs just let me know.
Thanks!
KYLE
Here is the output of «cat /etc/apt/sources.list» (Thanks kedaha!)
Code: Select all
#############################################################
################### OFFICIAL DEBIAN REPOS ###################
#############################################################
###### Debian Main Repos
deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free
###### Debian Update Repos
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free
##############################################################
##################### UNOFFICIAL REPOS ######################
##############################################################
###### 3rd Party Binary Repos
#### Debian Multimedia - http://www.debian-multimedia.org/
## Run this command: apt-get update && apt-get install debian-multimedia-keyring && apt-get update
deb http://www.debian-multimedia.org testing main non-free
deb http://www.debian-multimedia.org testing main
deb http://http.us.debian.org/debian/ sid contrib non-free main
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Unable to install Wine on Ubuntu 20.04.2.0
I’m re-sending my post this time with the forum code-tag (sorry for the mistake, I’m new here).
I just installed Ubuntu on this computer then tried to install Wine but it didn’t work. Here’s the detailed script of the events:
1) I installed Unbuntu 20.04.2.0 with the minimal option (a fresh install)
2) I did all the updates
3) I installed VLC, Libre Office 7.1 and the game O.A.D. That’s it, nothing else.
4) I then started the process to install Wine
5) I did a check for my version just to be sure
Code: Select all
me@Computer:~$ sudo dpkg --add-architecture i386
[sudo] password for me:
6) I then started the installation of Wine and got an error message at the end:
Code: Select all
e@Computer:~$ wget -nc https://dl.winehq.org/wine-builds/winehq.key
--2021-04-25 18:53:25-- https://dl.winehq.org/wine-builds/winehq.key
Resolving dl.winehq.org (dl.winehq.org)... 151.101.138.217
Connecting to dl.winehq.org (dl.winehq.org)|151.101.138.217|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3220 (3.1K) [application/pgp-keys]
Saving to: ‘winehq.key’
winehq.key 100%[===================>] 3.14K --.-KB/s in 0s
2021-04-25 18:53:26 (14.0 MB/s) - ‘winehq.key’ saved [3220/3220]
me@Computer:~$ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/focal main'
E: Malformed entry 58 in list file /etc/apt/sources.list (Component)
E: The list of sources could not be read.
7) I tried again, this time with a space just before «focal» but still an error message at the end:
Code: Select all
me@Computer:~$ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
E: Malformed entry 58 in list file /etc/apt/sources.list (Component)
E: The list of sources could not be read.
What’s wrong? It’s a complete fresh install and there’s a problem right from the start. I didn’t check the file in question because I don’t know how yet and wouldn’t know what to look for. Can someone help me fix this problem and also to explain me how this happened so I can learn from that.
Thanks a lot
-
dimesio
- Moderator
- Posts: 13143
- Joined: Tue Mar 25, 2008 10:30 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by dimesio » Mon Apr 26, 2021 7:10 am
DiabloGamer wrote: ↑Sun Apr 25, 2021 6:51 pm
7) I tried again, this time with a space just before «focal» but still an error message at the end:Code: Select all
me@Computer:~$ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' E: Malformed entry 58 in list file /etc/apt/sources.list (Component) E: The list of sources could not be read.
Did you also delete the entry without the space that you had previously added? You need to.
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Tue Apr 27, 2021 1:40 am
Hi Dimesio. no i did not. How do I do that?
Also, I now have a warning on Ubuntu:
An error occurred, please run Package Manager from right-click menu or apt-get in terminal to see what is wrong. The error message was «Error:Opening the cache (E:Malformed entry 58 in list file /etc/apt/source.list (Component),E:The list of sources cannot be read.)’. This usually means that your installed packages have unmet dependencies
What should I do from there?
A) delete the entry without the space…how?
B) anything else you suggest?
Big thanks for the help!
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Tue Apr 27, 2021 10:32 am
Hi Dimesio, maybe you forgot that I’ve mentioned that I’m new to this. Remember the very first day you tried Linux? Then you know how I feel right now lol. I have to do this as sudo…. OK, I know that sudo is the master of all master and make a mistake in sudo and it might be a nightmare! So what’s the steps? I open the editor, but then what? How to be a sudo, etc…. I’m heading for trouble if I don’t get the exact steps to do
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Wed Apr 28, 2021 2:00 am
OK, I did that.
You told me to delete one row, but I see two rows. Is it possible to send you privately the sources.list file so you can check it and tell me what to do (it could also be other problem on other lines, who knows)? We may save a lot of time and trouble like that
Also, nano doesn’t show the line counts. Any suggestion for something better?
Thanks for all the help, much appreciated!
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Thu Apr 29, 2021 1:53 pm
Here is the full content of sources.list file. Please let me know about anything wrong you can see in it and which lines to delete. Thx!
Code: Select all
deb cdrom:[Ubuntu 20.04.2.0 LTS _Focal Fossa_ - Release amd64 (20210209.1)]/ focal main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ focal main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ focal-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ focal universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal universe
deb http://us.archive.ubuntu.com/ubuntu/ focal-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ focal multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal multiverse
deb http://us.archive.ubuntu.com/ubuntu/ focal-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu focal partner
# deb-src http://archive.canonical.com/ubuntu focal partner
deb http://security.ubuntu.com/ubuntu focal-security main restricted
# deb-src http://security.ubuntu.com/ubuntu focal-security main restricted
deb http://security.ubuntu.com/ubuntu focal-security universe
# deb-src http://security.ubuntu.com/ubuntu focal-security universe
deb http://security.ubuntu.com/ubuntu focal-security multiverse
# deb-src http://security.ubuntu.com/ubuntu focal-security multiverse
# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.
deb https://dl.winehq.org/wine-builds/ubuntu/focal main
# deb-src https://dl.winehq.org/wine-builds/ubuntu/focal main
deb https://dl.winehq.org/wine-builds/ubuntu/ focal main
# deb-src https://dl.winehq.org/wine-builds/ubuntu/ focal main
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Thu Apr 29, 2021 3:30 pm
OK, I did that and rebooted. Now the error icon at the top right has disappeared so it sounds good. I did the next step as told on your website:
And I am getting stuck again. On your website it says to update the packages then to install one of the following packages. (https://wiki.winehq.org/Ubuntu).
1) I’m confused. Why updating the packages BEFORE installing them??
2) I got a result saying that there are things that can be updated. Do I have to do them? Also, it’s weird because I got a message from the live update about things ready for an update and did it and the sudo command says there are still things to be updated. Another thing, the way the writing is done on Wine’s website is like we do the sudo update command and that’s it then we install one of the 3 packages. But here I get that message about things to be updated. I thought the command was related to the wine stuff. Sorry if it sounds stupid, but those are me very first steps on Linux.
3) If I have to do the update, then how to do it?
I’m including a screen capture of what I got after the sudo apt update command:
Thanks for your help and patience Dimesio
-
dimesio
- Moderator
- Posts: 13143
- Joined: Tue Mar 25, 2008 10:30 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by dimesio » Thu Apr 29, 2021 5:18 pm
The sudo apt update command doesn’t install anything; it merely checks the metadata for all the repositories in your /etc/apt/sources.list—that’s how it knows to tell you that there are other packages on your system that have newer versions available. You need to run it whenever you add a new repository, or apt won’t know what’s in it.
To actually upgrade the packages apt has identified as having newer versions, use sudo apt upgrade, which will upgrade everything that can be upgraded. If you only want to upgrade a specific packages, you will have to specify the package name in the command line.
If you need more general help on how to use your package manager, ask on the Ubuntu forum.
-
DiabloGamer
- Level 2
- Posts: 10
- Joined: Sun Apr 25, 2021 6:14 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by DiabloGamer » Fri Apr 30, 2021 12:07 pm
OK, I undertsnad. sudo apt update is to check if there’s any update available. And sudo apt upgrade is to update everything at once. I did it and it worked fine. I then installed the stable version and it worked fine.
Last question, at the bottom of the page https://wiki.winehq.org/Ubuntu it says:
Compiling WoW64
Ubuntu’s implementation of Multiarch is still incomplete, so for now you can’t simply install 32-bit and 64-bit libraries alongside each other. If you’re on a 64-bit system, you’ll have to create an isolated environment for installing and building with 32-bit dependencies. See Building Biarch Wine On Ubuntu for detailed instructions for Ubuntu using LXC, and Building Wine for general information.
Do I have to do that? I’m installing Wine so I can play Diablo on Unbuntu.
-
invisible kid
- Level 4
- Posts: 248
- Joined: Tue Dec 24, 2019 3:23 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by invisible kid » Wed May 05, 2021 1:03 pm
Do I have to do that? I’m installing Wine so I can play Diablo on Unbuntu.
No. If you are able to install wine via a package manager, and it works, there is no need to build unless you wanted to tweak compile options or modify the source or something similar. The vast majority do not build.
-
AndyTulenko
- Level 1
- Posts: 5
- Joined: Mon May 10, 2021 8:05 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by AndyTulenko » Mon May 10, 2021 8:10 pm
I am brand new to Linux. I have a 95% clean install of 20.04 and this thread was helping.
Now I’ve run into the dreaded line 58 error multiple times in a row and I’m stuck there. Is there a simple 1,2,3 step by step for doing this?
I may have run into issues because of the way I was installing things. Would it be better for me to just wipe it out and reinstall 20.04?
-
dimesio
- Moderator
- Posts: 13143
- Joined: Tue Mar 25, 2008 10:30 pm
Re: Unable to install Wine on Ubuntu 20.04.2.0
Post
by dimesio » Tue May 11, 2021 7:32 am
AndyTulenko wrote: ↑Mon May 10, 2021 8:10 pm
I am brand new to Linux. I have a 95% clean install of 20.04 and this thread was helping.
Now I’ve run into the dreaded line 58 error multiple times in a row and I’m stuck there. Is there a simple 1,2,3 step by step for doing this?
If you’re talking about a «Malformed entry» error from apt, that means you have a typo in your /etc/apt/sources.list on the line the error message references and you need to either correct it or delete it. Instructions for how to do that have already been provided in this thread.