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 03-05-2019, 01:46 PM   #1
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Rep: Reputation: 51
Question (Debian) Problems dealing with .deb local files


Synaptic is very handy, I like it since many years ago; aptitude is very good too, although it does things a bit different than synaptic (and I do not know exactly which). Using dpkg is sometimes necessary. Specific versions and abandoned packages are two examples that happened to me a good number of times. And aptitude and synaptic cannot install them from local files (I think).

But dpkg is not a simple command to master. When something more complex than "dpkg -i [file]" is needed, confusion comes to me.

In the last few days, I have been playing with dpkg and reading its man page. I found a very good argument: --no-act ! :D But it did not work as expected. I will give an example by copying the relevant part of my terminal session:

Code:
$  sudo ls
$   echo $LC_ALL


$   LC_ALL=C              # it must be an uppercase C

$   export LC_ALL

$   ls *deb
400K screenlets_0.1.6-0ubuntu2_all.deb

$   # not root!

$   dpkg --no-act -i screenlets_0.1.6-0ubuntu2_all.deb 
dpkg: warning: 'ldconfig' not found in PATH or not executable
dpkg: warning: 'start-stop-daemon' not found in PATH or not executable
dpkg: error: 2 expected programs not found in PATH or not executable
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin

$  # the warnings about ldconfig and start-stop-daemon are dependency or access?

$  sudo  dpkg --no-act -i screenlets_0.1.6-0ubuntu2_all.deb 
(Reading database ... 185389 files and directories currently installed.)
Preparing to unpack screenlets_0.1.6-0ubuntu2_all.deb ...

$  # just that? no dependency?? seems perfect to be installed! Lets do it:

$  sudo dpkg -i screenlets_0.1.6-0ubuntu2_all.deb
(Reading database ... 185389 files and directories currently installed.)
Preparing to unpack screenlets_0.1.6-0ubuntu2_all.deb ...
Unpacking screenlets (0.1.6-0ubuntu2) over (0.1.6-0ubuntu2) ...
dpkg: dependency problems prevent configuration of screenlets:
 screenlets depends on python-support (>= 0.90.0); however:
  Package python-support is not installed.
 screenlets depends on python-gobject; however:
  Package python-gobject is not installed.
 screenlets depends on python-gnome2; however:
  Package python-gnome2 is not installed.
 screenlets depends on python-dbus; however:
  Package python-dbus is not installed.
 screenlets depends on python-wnck | python-gnome2-desktop; however:
  Package python-wnck is not installed.
  Package python-gnome2-desktop is not installed.
 screenlets depends on python-gst0.10; however:
  Package python-gst0.10 is not installed.
 screenlets depends on python-gconf; however:
  Package python-gconf is not installed.
 screenlets depends on python-beautifulsoup; however:
  Package python-beautifulsoup is not installed.

dpkg: error processing package screenlets (--install):
 dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme (0.15-1) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for mime-support (3.60) ...
Processing triggers for menu (2.1.47+b1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Errors were encountered while processing:
 screenlets

$   # With a few commands and a temporary folder, I discovered that the files

$  # (at least some of) the .deb contains were installed, although dpkg gave

$  # an error! ):<

$
Unfortunately, --no-act dpkg was muuuuuch different than the "yes-act".

What should I conclude at this point? How do I complete the installation of this package, or reach a conclusion where I can say it will not work on my system? In case you want to examine the package yourselves, it is newest file in a hidden Ubuntu folder, or in this disposable link, if you prefer:

https://nofile.io/f/Y36R0v71oJR/scre...buntu2_all.deb

That should be there for a long time ("as long as possible" was chosen).

Last edited by dedec0; 03-09-2019 at 11:51 AM.
 
Old 03-05-2019, 01:49 PM   #2
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Please note that prefixing a command in Linux with LC_ALL=c should provide output in English, e.g.

Code:
LC_ALL=c sudo dpkg -i screenlets_0.1.6-0ubuntu2_all.deb
You might be best to edit your original post, or add a new one, with the output in English so that others may better understand your issue.
 
1 members found this post helpful.
Old 03-05-2019, 02:38 PM   #3
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Thumbs up

LC_ALL was the variable! I changed only the LANG. I knew I have done it before, and people around here have said me about it... but I did not know what I would search to find it (not that I really tried that path, but I tried the $LANG changes that are disconsidered for this).

I will redo those commmands and edit my post now. (:

After that, I will create an alias and/or a function to make this language change. If the result is good for me, I will put it here for others taking the idea. (: I find that very useful to discuss IT things over the Internet.
 
1 members found this post helpful.
Old 03-09-2019, 11:53 AM   #4
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Done editing post #1. Now the commands' output is in english, as preferred here.
 
Old 03-10-2019, 07:28 AM   #5
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Thanks dedec0.

First of all, thanks for the heads-up on the capitalisation of the "C". I have given that hint to quite a few folk on here and no-one's pointed it out to me before, despite getting it to work. I've changed my notes accordingly.

--no-act is just a synonym for the --simulate: option (it also has the synonym --dry-run). All it does is simulate the dpkg action, whatever it might be, without actually carrying out the operation. It shouldn't have produced those warnings and errors that you experienced. However, given that dpkg needs to access the package manager, I would recommend that you run the command with root privileges so that --no-act can give as precise a simulation as possible.

For info and comparison with what you experienced, here is what I get when I simulate installation as an ordinary user:

Code:
$ dpkg --no-act -i clamtk_5.27-1_all.deb 
dpkg: could not open log '/var/log/dpkg.log': Permission denied
(Reading database ... 395307 files and directories currently installed.)
Preparing to unpack clamtk_5.27-1_all.deb ...
$
The only visible difference with running that with sudo is that I don't get the permission-related error message.

Which is obviously not what you're experiencing.

So, let's pull back and look at the screenlets package. You obviously don't have a lot of its dependencies on your system, hence the dpkg dependency error messages. Please let me know which distro and version you are running. For info, that directory you pointed to in your post is called "old releases" - you can't just mix and match old programs and newer versions of Ubuntu and expect that to work.
 
Old 03-10-2019, 07:57 AM   #6
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
screenlets 0.1.6 was released in 2012.
wouldn't you rather try 0.1.7 from 2017?

but debian stable has 0.1.2 in the repos...
 
Old 03-10-2019, 08:12 AM   #7
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by ondoho View Post
screenlets 0.1.6 was released in 2012.
wouldn't you rather try 0.1.7 from 2017?

but debian stable has 0.1.2 in the repos...
Maybe we should wait until the OP tells us which distro and version they are using.
 
Old 03-10-2019, 10:23 AM   #8
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
It is Debian 9

I have a Debian 9 here.

I got that old screenlets version from Ubuntu because this application have changed its compatibility with Gnome 2 in newers versions. I am using Mate Desktop as my window manager - and Mate is a Gnome 2 fork, i want something that works in Gnome 2. And that is exactly what screenlets in Ubuntu 10.04 is.

Differently from what you said, I did not find screenlets in Debian, using aptitude or synaptic. I have difficulty with the configuration and "checking what I have now" correspondence of it. I was able to find screenlets 1.2 for stretch (which is debian 9, as my motd note always remember me easily) in packages.debian.org.

But I have no clue on how to put together and working two facts: packages.debian.org has screenlets for my Debian version; but my computer does not have it for some setting. For myself, I would manually download the screenlets[...].deb file and install it manually.

Just a final note: for what I want, the Ubuntu 10.04 version works perfectly, so I have no interest in any feature improvement that newer versions may have.

Last edited by dedec0; 03-10-2019 at 10:28 AM.
 
Old 03-10-2019, 10:57 AM   #9
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
So not only are you trying to load a really old version of software onto your Debian distro but you're getting that software from the out-of-date repositories of another distro, Ubuntu?

Simply put, you're going to have to find another way of doing things.

I know it's an older version, but did you try the simple:

Code:
sudo apt-get install screenlets
 
Old 03-10-2019, 04:30 PM   #10
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Quote:
Originally Posted by hydrurga View Post
So not only are you trying to load a really old version of software onto your Debian distro but you're getting that software from the out-of-date repositories of another distro, Ubuntu?

Simply put, you're going to have to find another way of doing things.

I know it's an older version, but did you try the simple:

Code:
sudo apt-get install screenlets
Yes, I think. Searching for "screenlets" with synaptic and with aptitude is as good as that? The problem is with which repositories I chose to have. It did not bring any results, and so I went searching for the package I have used before (was in that Ubuntu).
 
Old 03-10-2019, 05:14 PM   #11
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
You're running Debian 9, i.e. Stable.

According to Debian, screenlets is in the Stable repos:

https://packages.debian.org/search?k...le&section=all

If you are not seeing it with apt-get then your software sources are set up incorrectly.

Please paste the output from:

Code:
for i in /etc/apt/sources.list{,.d/*}; do echo file: $i; cat $i; echo ====; done
 
1 members found this post helpful.
Old 03-10-2019, 05:44 PM   #12
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Smile

Quote:
Originally Posted by hydrurga View Post
You're running Debian 9, i.e. Stable.

According to Debian, screenlets is in the Stable repos:

https://packages.debian.org/search?k...le&section=all
I would just like to note that this URL is what we get by:

1. Opening packages.debian.org

enters the package name in the "Search package directories" keyword box, not the subsequent keyword box

2. In the section "Search package directories", in the "Keywords" textfield, write "screenlets" (no quotes). Be careful to not use the "Search the contents of packages" section, that will have the same fields.

3. The rest should be the default: "package names only"; distribution "stable"; section "any"

4. Click on "search" button bellow these things


Quote:
Originally Posted by hydrurga View Post
If you are not seeing it with apt-get then your software sources are set up incorrectly.

Please paste the output from:

Code:
for i in /etc/apt/sources.list{,.d/*}; do echo file: $i; cat $i; echo ====; done
Here it is. There are some comments there, for some changes I made in it sometime ago. The information there should be enough, I think. If it is not clear, just ask. So:

Code:
$ for i in /etc/apt/sources.list{,.d/*}; do echo file: $i; cat $i; echo ====; done
file: /etc/apt/sources.list


# deb cdrom:[Debian GNU/Linux 9.0.0 _Stretch_ - Official amd64 NETINST 20170617-13:06]/ stretch main 

# deb cdrom:[Debian GNU/Linux 9.0.0 _Stretch_ - Official amd64 NETINST 20170617-13:06]/ stretch main 

# Mudanças feitas seguindo:
# " Debian 9 (stretch) - why 'apt-get update' cannot write tmp files? "
# https://www.linuxquestions.org/questions/showthread.php?p=5794018#post5793944

deb http://deb.debian.org/debian/ stretch universe main multiverse 
# deb http://httpredir.debian.org/debian/ stretch main 
deb-src http://deb.debian.org/debian/ stretch main 
# deb-src http://httpredir.debian.org/debian/ stretch main 


deb http://security.debian.org/ stretch/updates main 
deb-src http://security.debian.org/ stretch/updates main 

# stretch-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ stretch-updates main 
# deb http://httpredir.debian.org/debian/ stretch-updates main 
deb-src http://deb.debian.org/debian/ stretch-updates main 
# deb-src http://httpredir.debian.org/debian/ stretch-updates main 



====
file: /etc/apt/sources.list.d/skype-stable.list
deb [arch=amd64] https://repo.skype.com/deb/ stable main  



====

$

Last edited by dedec0; 03-10-2019 at 07:56 PM.
 
Old 03-10-2019, 05:58 PM   #13
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
I'll add a clarifying point to the first note in your post: one enters the package name in the "Search package directories" keyword box, not the subsequent "Search the contents of packages" keyword box.

It's interesting that you have multiverse and universe indicated for the main repo. Those are Ubuntu designations as far as I know, not Debian ones. It's also interesting that you didn't include contrib and non-free for any of the three sources, or their deb-src equivalents - was that intentional?

For pure info, here is a sample Debian sources.list: https://wiki.debian.org/SourcesList#...e_sources.list

Anyway, I would recommend that you delete the multiverse and universe keywords. Then please paste the results of the following commands (prepend by sudo if you're not root):

Code:
apt-get update

apt-get install screenlets
Many thanks.
 
Old 03-12-2019, 10:38 AM   #14
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Quote:
Originally Posted by hydrurga View Post
I'll add a clarifying point to the first note in your post: one enters the package name in the "Search package directories" keyword box, not the subsequent "Search the contents of packages" keyword box.
I have edited my previous post with this you pointed. It is an important detail I had not noted. Thank you for saying.

For the rest of your last post, I need more time to give it proper attention.
 
1 members found this post helpful.
Old 03-13-2019, 02:05 PM   #15
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by dedec0 View Post
I would just like to note that this URL is what we get by:

1. Opening packages.debian.org

enters the package name in the "Search package directories" keyword box

etc.
so what's wrong with
Code:
apt search keyword
???
 
1 members found this post helpful.
  


Reply

Tags
aptitude, debian, debian 9, dpkg, synaptic



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
grub-mkconfig sees both installed oses (deb & mint), but lists both as deb part. slacker_ Linux - General 14 06-22-2014 05:07 AM
unpack multiple deb files with dpkg-deb? steve51184 Linux - Software 2 02-13-2011 08:48 AM
How can I run this .deb file: install_flash_player_10_linux.deb abefroman Linux - Desktop 1 11-04-2009 10:02 AM
Is "kernel-image-x_i386.deb or i586.deb the right image for P4 processor? davidas Debian 1 04-06-2004 03:50 AM
Can apt4rpm use deb repositories or install .deb packages? raylpc Linux - General 0 08-18-2003 01:49 AM

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

All times are GMT -5. The time now is 03:27 AM.

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