Re: Re: Further on the DSELECT saga.....

2024-09-06 Thread Juan Rincon Gonzalez
Opensource Juan Rincon

Re: Usage: "debian ... amd64-netinst.iso"

2024-09-06 Thread Max Nikulin
On 06/09/2024 14:53, Thomas Schmitt wrote: i wrote: I let xorriso-dd-target use bs=1M oflag=dsync Max Nikulin wrote: May too small bs value cause write multiplication if internal flash erasure block size is much larger? [...] My concern is wearing, Is there evidence that sync size a sma

Re: linux-image-6.10.6 fails to build in nvidia-tesla-470

2024-09-06 Thread Charles Curley
On Fri, 6 Sep 2024 16:39:46 -0600 Rick Macdonald wrote: > Well, this is embarrassing. I found in the bash history that I ran > this: > > apt install -t bookworm-backports linux-image-amd64 > linux-headers-amd64 > > Sorry to sound so lame, but I do I remove the backport such that it > goes back

Re: linux-image-6.10.6 fails to build in nvidia-tesla-470

2024-09-06 Thread Rick Macdonald
Well, this is embarrassing. I found in the bash history that I ran this: apt install -t bookworm-backports linux-image-amd64 linux-headers-amd64 but I have no idea why. The timestamp of the deb file is July 18. I don't remember why I did this. Getting old sucks. Looking at the history, it lo

Re: OT: Question to shell script

2024-09-06 Thread Anssi Saari
Hans writes: > What I am exactly want to do: > > I have 5 live-build directories. In each I am starting my own script, which > is > setting variables and so on for the individual build and does some other > things (rennamin and copying the resulted ISO and so on). So you're asking how to do a

Re: linux-image-6.10.6 fails to build in nvidia-tesla-470

2024-09-06 Thread Anssi Saari
Rick Macdonald writes: > I'm running an up-to-date Bookworm desktop. I have an NVIDIA GeForce > GTX 760 (192-bit) using the NVIDIA Driver Version 470.256.02, coming > from the nvidia-tesla-470 packages. I've searched this list and the > package pages and don't see any bugs reported. > > The 6.10.

Re: OT: Question to shell script

2024-09-06 Thread Hans
What I am exactly want to do: I have 5 live-build directories. In each I am starting my own script, which is setting variables and so on for the individual build and does some other things (rennamin and copying the resulted ISO and so on). As each build must be started within the live-build dir

linux-image-6.10.6 fails to build in nvidia-tesla-470

2024-09-06 Thread Rick Macdonald
I'm running an up-to-date Bookworm desktop. I have an NVIDIA GeForce GTX 760 (192-bit) using the NVIDIA Driver Version 470.256.02, coming from the nvidia-tesla-470 packages. I've searched this list and the package pages and don't see any bugs reported. The 6.10.6 image fails to build: Erro

Re: Help upgrade to JDK-21

2024-09-06 Thread Dan Ritter
Arbol One wrote: > I'd like to upgrade from JDK-17 to JDK-21. > Since I am new to, well, Linux in general, I'd like to know from anyone > who'd done this upgrade if this would be OK under Debian 12 (No > free-firmwarepackages please). > Any advice would be much appreciated. Debian stable (12) do

Help upgrade to JDK-21

2024-09-06 Thread Arbol One
I'd like to upgrade from JDK-17 to JDK-21. Since I am new to, well, Linux in general, I'd like to know from anyone who'd done this upgrade if this would be OK under Debian 12 (No free-firmwarepackages please). Any advice would be much appreciated. -- */ArbolOne ™/* Using Fire Fox and Thunderbi

Re: OT: Question to shell script

2024-09-06 Thread DdB
Am 06.09.2024 um 12:25 schrieb Hans: > Dear list, > > I am stuck with a little problem and know no one, whom I can ask. So I allow > me to ask here. > > I have several directories, and in each directory there is a shell script, > which MUST be started within and from its path. > > Now I wan

Re: Problems with Chrome

2024-09-06 Thread Jeffrey Walton
On Fri, Sep 6, 2024 at 8:22 AM Mick Ab wrote: > > I am trying to use Chrome on a bullseye desktop. > > Chrome   version 127.0.6533.88 (Official Build) (64-bit) > > The three dots at the top right for the menu have never worked when clicked > on - there would just be a flash and nothing would come

Re: Problems with Chrome

2024-09-06 Thread mindaugas
Hello. The three dots at the top right is a menu. Try to open it with keyboard shortcut (alt+f) . Does the menu open using these shortcut? If it does not open, then write what desktop environment (or window manager) you are using 06.09.2024 12:11, Mick Ab пишет: I am trying to use Chrome on

Re: Usage: "debian ... amd64-netinst.iso"

2024-09-06 Thread Max Nikulin
On 06/09/2024 14:53, Thomas Schmitt wrote: Jeff wrote: I've run into this situation (more than once)... `dd` fails to write a bootable image with a block size of 1M. But using a block size of 512 results in a bootable image. It used to happen regularly on arm dev boards, like BeagleBoards and Cu

Re: OT: Question to shell script

2024-09-06 Thread Andy Smith
Hi, On Fri, Sep 06, 2024 at 07:32:41AM -0400, Greg Wooledge wrote: > On Fri, Sep 06, 2024 at 11:10:16 +, Andy Smith wrote: > > Is there a reason not to just make these scripts cd to their own > > directory so the caller doesn't have to care? > > > > cd "$(dirname "$0")" > > https://mywiki.wo

Re: OT: Question to shell script

2024-09-06 Thread Nicolas George
Andy Smith (12024-09-06): > cd "$(dirname "$0")" … || exit Regards, -- Nicolas George

Re: OT: Question to shell script

2024-09-06 Thread Greg Wooledge
On Fri, Sep 06, 2024 at 11:10:16 +, Andy Smith wrote: > Is there a reason not to just make these scripts cd to their own > directory so the caller doesn't have to care? > > cd "$(dirname "$0")" https://mywiki.wooledge.org/BashFAQ/028

Re: OT: Question to shell script

2024-09-06 Thread Greg Wooledge
On Fri, Sep 06, 2024 at 12:25:11 +0200, Hans wrote: > I have several directories, and in each directory there is a shell script, > which MUST be started within and from its path. I'm not clear on what "within and from its path" means here, but let's suppose you mean "I have to cd there first, an

Re: OT: Question to shell script

2024-09-06 Thread Andy Smith
Hi, On Fri, Sep 06, 2024 at 12:25:11PM +0200, Hans wrote: > I have several directories, and in each directory there is a shell script, > which MUST be started within and from its path. Is there a reason not to just make these scripts cd to their own directory so the caller doesn't have to care?

OT: Question to shell script

2024-09-06 Thread Hans
Dear list, I am stuck with a little problem and know no one, whom I can ask. So I allow me to ask here. I have several directories, and in each directory there is a shell script, which MUST be started within and from its path. Now I want to edit a "master-shell-script", which I can start fr

Problems with Chrome

2024-09-06 Thread Mick Ab
I am trying to use Chrome on a bullseye desktop. Chrome version 127.0.6533.88 (Official Build) (64-bit) The three dots at the top right for the menu have never worked when clicked on - there would just be a flash and nothing would come up, so the menu isn't useable.. Also Chrome keeps seizin

Re: Usage: "debian ... amd64-netinst.iso"

2024-09-06 Thread Thomas Schmitt
Hi, i wrote: > > I let xorriso-dd-target use > >bs=1M oflag=dsync Max Nikulin wrote: > May too small bs value cause write multiplication if internal flash erasure > block size is much larger? [...] My concern is wearing, Is there evidence that sync size a smaller than such an internal size i