Re: How to find installed packages not in APT?

2025-02-03 Thread Loren M. Lang
On Mon, Feb 03, 2025 at 06:09:38PM -0800, Mike Castle wrote: > On Mon, Feb 3, 2025 at 5:16 PM Loren M. Lang wrote: > > Basically, I want to identify any software that I couldn't reinstall on > > a fresh install of Debian from the official Debian archives. > > Will this work as a starting place fo

Re: How to find installed packages not in APT?

2025-02-03 Thread Greg Wooledge
On Mon, Feb 03, 2025 at 23:33:50 -0500, gene heskett wrote: >  gene@coyote:/$ sudo -i > root@coyote:~# comm -23 <(dpkg-query -W -f '${Package} ${Version}\n' | sort > -u) > <(apt-cache dumpavail | awk '/^Package:/ {package = $NF} /^Version:/ > {version = $NF} /^$/ {print package, version}' | sort -u

Re: How to find installed packages not in APT?

2025-02-03 Thread gene heskett
On 2/3/25 21:10, Mike Castle wrote: On Mon, Feb 3, 2025 at 5:16 PM Loren M. Lang wrote: Basically, I want to identify any software that I couldn't reinstall on a fresh install of Debian from the official Debian archives. Will this work as a starting place for you? comm -23 <(dpkg-query -W -f

Re: add user to a group and logout/login to apply

2025-02-03 Thread Max Nikulin
On 02/02/2025 22:51, Vasyl Vavrychuk wrote: On the other hand, I've checked that with Debian 12 and GNOME it is not enough to logout and login to see that a user is added to a group. Any comments? Wait a bit longer before next login (and check there is no VT or ssh logins at the same time).

Re: google-chrome printer/copier error

2025-02-03 Thread Max Nikulin
On 02/02/2025 10:39, John Conover wrote: [2139:2164:0201/184043.963188:ERROR:object_proxy.cc(576)] \ Failed to call method: org.freedesktop.DBus.StartServiceByName: \ object_path= /org/freedesktop/DBus: org.freedesktop.DBus.Error.NoReply: \ Did not receive a reply. Does anyone k

Re: How to find installed packages not in APT?

2025-02-03 Thread Mike Castle
On Mon, Feb 3, 2025 at 5:16 PM Loren M. Lang wrote: > Basically, I want to identify any software that I couldn't reinstall on > a fresh install of Debian from the official Debian archives. Will this work as a starting place for you? comm -23 <(dpkg-query -W -f '${Package} ${Version}\n' | sort -u

Re: How to find installed packages not in APT?

2025-02-03 Thread Loren M. Lang
On Mon, Feb 03, 2025 at 11:09:58AM +, Andy Smith wrote: > Hi Loren, > > On Sun, Feb 02, 2025 at 11:29:45PM -0800, Loren M. Lang wrote: > > I am looking for a way to find all packages that have been installed on > > my system according to dpkg, but don't have a matching entry in Apt. > > Packa

Encrypted /boot partition gets decrypted twice during boot

2025-02-03 Thread Automætic
Hi, I'm configuring a new Debian installation on my workstation, with both the /boot partition and the root filesystem encrypted: - /dev/nvme0n1p1 -> /EFI - /dev/nvme0n1p2 -> LUKS2 (pbkdf2) -> /boot - /dev/nvme0n1p3 -> LUKS2 -> LVM containing root and other volumes The system boots, but requires

Re: no space left on device

2025-02-03 Thread George at Clug
I found the below info on MFT but did not find anything about how the MFT Zone automatically allocating more space to the MFT when the current MFT Zone is consumed. https://learn.microsoft.com/en-us/troubleshoot/windows-server/backup-and-storage/ntfs-reserves-space-for-mft As files are added to

Re: no space left on device

2025-02-03 Thread George at Clug
I love three letter acronyms ! So meaningful (of course, context helps) I am going to guess with large capacity drives, and large SAN environments, Master File Table (MFT) management and scalability is critical ? I am curious: Are you storing many small files? What is the size of the NTFS pa

Re: no space left on device

2025-02-03 Thread Stefan Monnier
>> Jan 13 19:46:06 eagle ntfs-3g[4262]: No free mft record for $MFT: No >> space left on device > Hmm, MFT too small? A quick search showed me this (from a forum): AFAIK the MFT is implemented as a "normal" file; it can grow as needed like any other file. So, as long as there's room on the disk, i

Re: WLAN with /etc/network/interfaces

2025-02-03 Thread George at Clug
Rainer, I believe others have responded. Just for my curiosity, Is Network Manager installed? Would you be able to use nmclli to set a static IP address? Or maybe systemctl ? I find Linux Networking confusing, so many different systems for managing networking, for example /etc/network/interf

Re: WLAN with /etc/network/interfaces

2025-02-03 Thread Frank Guthausen
On Sun, 02 Feb 2025 15:01:27 +0100 Rainer Dorsch wrote: > > I am trying to bringup the wifi network with an ipv4 address on a > Cubox-i automatically after boot. > > Manually, it works: > [...] > root@outdoor:~# ifdown wlan0 > [...] > ifroot@outdoor:~# ifup wlan0 > [...] > Any hint or advice is

Re: How to find installed packages not in APT?

2025-02-03 Thread Greg Wooledge
On Mon, Feb 03, 2025 at 15:18:59 +0100, Jörg-Volker Peetz wrote: > you could check for obsolete packages, depending on the apt version, with > > $ apt list '~o' Oh, right. *That* is probably what the OP was really looking for: packages that have been installed in the past but are no longer i

Re: How to find installed packages not in APT?

2025-02-03 Thread Jörg-Volker Peetz
Hi, you could check for obsolete packages, depending on the apt version, with $ apt list '~o' Also looking for broken or garbage packets could help: $ apt list '~b' '~g' Of course, the output will depend on how your sources file (/etc/apt/sources.list, etc.) looks like. If you think the

Re: WLAN with /etc/network/interfaces

2025-02-03 Thread Hans
Looks like your firmware is not available. For broadcomm cards there is an extra installer, which downloads it seperately. In Debian the firmware is not shipped in the repo, but an installer is shipped. Check for any broadcom related packages. Hope this helps. Best Hans > In the kernel messa

Re: WLAN with /etc/network/interfaces

2025-02-03 Thread George at Clug
Rainer, Apologies I cannot help you. I have been hoping someone might who is able to do so, would respond. I searched the Internet and it would seem you are not alone with this issue. Is network manager installed in your system? Is your system Debian 12 (Bookworm)?, I would presume so. He

Re: How to find installed packages not in APT?

2025-02-03 Thread Andy Smith
Hi Loren, On Sun, Feb 02, 2025 at 11:29:45PM -0800, Loren M. Lang wrote: > I am looking for a way to find all packages that have been installed on > my system according to dpkg, but don't have a matching entry in Apt. Packages installed with dpkg -i *do* show in apt, so can you be more specific a

Re: ISO 9660 (version Joliet Extension)

2025-02-03 Thread Thomas Schmitt
Hi, William Torrez Corea wrote: > > I am using the following image: > > MS DOS 6.22 Bootable iso > > https://archive.org/details/ms-dos-6.22_dvd Charles Curley quoted from there: > "If you need to burn it to a portable storage device, like USBs or >dvd disks, unfortunately it will not work.