Linux Lite Forums

Full Version: Problems with apt-get/apt when installing or removing packages.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there guys!  Smile

I'm a newbie in Linux world and since a days ago I've had the following troubles when I want to install or remove packages:

[Image: STuGfKW.png]

I don't know what
Code:
xfce4-goodies : Depends: xfce4-whiskermenu-plugin but it is not going to be installed
is or means. And I neither know what is the
Code:
apt-get -f install
command use for.

When I run
Code:
apt-get -f install
I have the following response:

[Image: vEyuq6G.png]

By the way, I'm running Linux Lite 3.8 for 32bits. Thanks!! Wink
Your terminal prompt looks like you're in the wrong file path. What command did you use to get to root and why are you running root at all?

TC
(12-19-2020, 04:40 PM)alexander06_1 link Wrote: [ -> ]Hi there guys!  Smile

I'm a newbie in Linux world and since a days ago I've had the following troubles when I want to install or remove packages:

I don't know what
Code:
xfce4-goodies : Depends: xfce4-whiskermenu-plugin but it is not going to be installed
is or means. And I neither know what is the
Code:
apt-get -f install
command use for.

When I run
Code:
apt-get -f install
I have the following response:

By the way, I'm running Linux Lite 3.8 for 32bits. Thanks!! Wink

Are you trying to modify/remaster Linux Lite .iso file? Looks like it. Mind you, everything is hard-coded and making a custom one might prove to be real difficult to achieve.
In 3.8 xfce4-whiskermenu-plugin is a dependency of xfce4-goodies. To remedy the problem, only install the xfce4-goodies features you will actually need.

Fix:

1. DON'T DO ANYTHING AS ROOT
2. REFER TO RULE 1

now:

1. Open a Terminal, do:

Code:
sudo apt-get remove xfce4-goodies

or:

Code:
sudo apt-get remove xfce4-goodies xfce4-whiskermenu-plugin

go here - https://packages.ubuntu.com/xenial/xfce4-goodies

install the actual software you need, eg:

Code:
sudo apt-get install xfce4-weather-plugin

3.8 will no longer get updates and be secure, consider moving to Series 4.x or 5.x soon.
(12-19-2020, 09:32 PM)trinidad link Wrote: [ -> ]Your terminal prompt looks like you're in the wrong file path. What command did you use to get to root and why are you running root at all?

TC

What do you mean with wrong path? I used sudo -i for root. I'm not an expert! Is there any problem when I'm running everything in root?
(12-19-2020, 11:15 PM)Moltke link Wrote: [ -> ][quote author=alexander06_1 link=topic=7875.msg54549#msg54549 date=1608396018]
Hi there guys!  Smile

I'm a newbie in Linux world and since a days ago I've had the following troubles when I want to install or remove packages:

I don't know what
Code:
xfce4-goodies : Depends: xfce4-whiskermenu-plugin but it is not going to be installed
is or means. And I neither know what is the
Code:
apt-get -f install
command use for.

When I run
Code:
apt-get -f install
I have the following response:

By the way, I'm running Linux Lite 3.8 for 32bits. Thanks!! Wink

Are you trying to modify/remaster Linux Lite .iso file? Looks like it. Mind you, everything is hard-coded and making a custom one might prove to be real difficult to achieve.
[/quote]

No bro! I wasn't doing that. By the way, what do you mean with modify/remaster Linux Lite .iso file?
(12-20-2020, 04:30 AM)Jerry link Wrote: [ -> ]In 3.8 xfce4-whiskermenu-plugin is a dependency of xfce4-goodies. To remedy the problem, only install the xfce4-goodies features you will actually need.

Fix:

1. DON'T DO ANYTHING AS ROOT
2. REFER TO RULE 1

now:

1. Open a Terminal, do:

Code:
sudo apt-get remove xfce4-goodies

or:

Code:
sudo apt-get remove xfce4-goodies xfce4-whiskermenu-plugin

go here - https://packages.ubuntu.com/xenial/xfce4-goodies

install the actual software you need, eg:

Code:
sudo apt-get install xfce4-weather-plugin

3.8 will no longer get updates and be secure, consider moving to Series 4.x or 5.x soon.

That actually worked bro, thank you!! Wink

Quote:No bro! I wasn't doing that. By the way, what do you mean with modify/remaster Linux Lite .iso file?

I thought you were trying to do that since you removed/installed whisker-menu which is already installed by default, that and the fact you were using root to do such basic things. Remaster means modify the original .iso file; remove/install pkgs, make your own customizations, so it's a bit different.

Quote:What do you mean with wrong path? I used sudo -i for root. I'm not an expert! Is there any problem when I'm running everything in root?

Usually once should not use/become root unless strictly necessary, i.e. modify certain system files the regular user can't. It's a bit risky since you could damage your system beyond repair; root can do anything and that includes break things.