Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Erwann Le Bras
bonjour comme dis par ailleurs, pas de problème avec les espaces si les variables et chemins sont bien protégés  avec des doubles-cotes (["]) fichier="mon fichier" dir="$HOME/mon répertoire" cp "$fichier" "$dir" Éviter les boucles "for" avec listes de fichiers (for f in `ls "$dir"`) ou (for

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Informatique BILLARD
merci je ne connaissais pas cet outils François-Marie Le 02/02/2024 à 09:54, Klaus Becker a écrit : Detox est ton ami Klaus

Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Informatique BILLARD
Bonjour j'ai écrit un petit script qui lance à la fin cette commande : pdftk $fichier1 stamp $tampon output $fichier2 avec $fichier1 et $tampon, $fichier2  sont construit à partir des paramètres fournis au script . Mais je rencontre un problème quand il y a un espace dans le nom de fichier

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Informatique BILLARD
Le 02/02/2024 à 08:48, Basile Starynkevitch a écrit : On 2/2/24 08:41, Informatique BILLARD wrote: Bonjour j'ai écrit un petit script qui lance à la fin cette commande : pdftk $fichier1 stamp $tampon output $fichier2 avec $fichier1 et $tampon, $fichier2  sont construit à partir des

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Klaus Becker
Detox est ton ami Klaus

Re: printing problem, markdown files

2024-02-02 Thread gene heskett
On 2/1/24 15:31, Dan Ritter wrote: gene heskett wrote: On 2/1/24 12:24, Dan Ritter wrote: gene heskett wrote: pandoc -f markdown FILEIN.md -t pdf -o FILEOUT.pdf will turn markdown into PDF, which you can probably print, if by no other means than FTP to the printer itself. (Try it, Brothers

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Cyrille
Bjr, > tampon=/user/Document/cachet\ pdf et tampon="/user/Document/cachet\ pdf" (utiliser des double quote ?? ++

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Informatique BILLARD
Bon j'ai tourné le problème dans tous les sens et finalement j'ai opté pour ceci 1. le nom du fichier passé comme argument au script est traité pour remplacer les espaces par des underscore. 2. je fait un renommage de ce fichier avec le nom sans espaces. 3. Puis traitement et tout

Re: Can't list root directory

2024-02-02 Thread Gary Dale
On 2024-01-31 12:02, Max Nikulin wrote: On 29/01/2024 23:42, Gary Dale wrote: "ls -l /" just hangs It may dereference symlinks, call stat, etc. to colorize output. May it happen that you have automount points or something related to network mounts? Does "echo /*" hangs? Even bash prompt

IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Ralph Aichinger
Hi fellow Debian users! In my quest to advance the IPv6 preparedness of my home LAN I want to find a solution to use IP tokens on all my clients. IP tokens (keeping the host part of the IPv6 address static while getting the subnet part by SLAAC) seem very elegant to me, because it avoids DHCPv6

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Marco Moock
Am 02.02.2024 schrieb Dmitry : > I want OS at the SSD. Then the ESP should be on that SSD too.

Re: su su- sudo dont work

2024-02-02 Thread Christian Lorenz
Yes, He/She is back again. In my opinion no serious request intended by this "person". Same approach as last time (and the issues before) * crying for help (destroyed OS) * no real answers to questions * repeating the same complain frequently Some possibilities 1. Shity AI 2. Troll 3. Bored

Re: IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Marco Moock
Am 02.02.2024 schrieb Ralph Aichinger : > In my quest to advance the IPv6 preparedness of my home LAN I want to > find a solution to use IP tokens on all my clients. IP tokens (keeping > the host part of the IPv6 address static while getting the subnet part > by SLAAC) seem very elegant to me,

Re: Automatically installing GRUB on multiple drives

2024-02-02 Thread Franco Martelli
On 31/01/24 at 22:51, hw wrote: [...] If your suggested solution is "use hardware RAID", no need to repeat that one though: I see you said it in a few other messages, and that suggestions has been received. Assume the conversation continues amongst people who don't like that suggestion. Well,

Re: Cuelgues aleatorios [SOLUCIONADO]

2024-02-02 Thread Luis Muñoz Fuente
El 4/1/24 a las 11:24, Camaleón escribió: > Ciertamente, Google encuentra un montón de problemas de cuelgues > aleatorios con ese hardware :-? > > random hangs AMD Ryzen 5 1600X > https://www.google.com/search?q=random+hangs+AMD+Ryzen+5+1600X > > Revisa los enlaces que estén vinculados con

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Dmitry
> Do you want to install the OS on it? Eventually no, I do not want OS on the Flash Stick. The Flash Stick is only a testing place. I want OS at the SSD. Now I am wondering how to prepare the Flash Stick to write LiveImage on it. Because I already created a GPT table on that Flash and use

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Erwann Le Bras
Effectivement François Merci d'avoir rectifié. Erwann Le 02/02/2024 à 13:09, François TOURDE a écrit : Le 19755ième jour après Epoch, Erwann Le Bras écrivait: Éviter les boucles "for" avec listes de fichiers (for f in `ls "$dir"`) ou (for f in *), les espaces sont mal interprétés. Ça

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Dmitry
Going to read carefully. https://www.debian.org/releases/buster/amd64/ch04s03.en.html Interesting that Buster has more documentation than current release.

Re: IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Ralph Aichinger
On Fri, 2024-02-02 at 14:28 +0100, Marco Moock wrote: > In the past the default was to use EUI-64 and have the MAC address in > the address. If that is suitable for you (privacy!), use that. I basically don't care about the privacy aspect for now (it is more of a lab setup, and my IPv4 address is

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread François TOURDE
Le 19755ième jour après Epoch, Erwann Le Bras écrivait: > Éviter les boucles "for" avec listes de fichiers (for f in `ls > "$dir"`) ou (for f in *), les espaces sont mal interprétés. Ça marche très bien l'utilisation avec for f in *, si tu prends soin d'utiliser "$f" plutôt que juste $f Par

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Max Nikulin
On 02/02/2024 21:06, Dmitry wrote: Need additional research what to do with a FlashStick with several partitions to make a LiveCD from it. Just copy files from LiveCD (it should have EFI/Boot/bootx64.efi) to the ESP partition on the USB stick.

Re: IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Marco Moock
Am 02.02.2024 schrieb Ralph Aichinger : > On Fri, 2024-02-02 at 14:28 +0100, Marco Moock wrote: > > # nmcli c mod enp4s0 ipv6.addr-gen-mode eui64 > > # nmcli c mod enp4s0 ipv6.token ::deca:fbad:c0:ffee > > This is not permanent, is it? It should be if you enter "save" in the nmcli.

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread David Wright
On Fri 02 Feb 2024 at 21:12:30 (+0700), Dmitry wrote: > Going to read carefully. > > https://www.debian.org/releases/buster/amd64/ch04s03.en.html > > Interesting that Buster has more documentation than current release. It appears the balance has now been spun off into a wiki page, at

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Dmitry
> Just copy files from LiveCD (it should have EFI/Boot/bootx64.efi) to the ESP partition on the USB stick. Yep. `dd` copy partitions table. Amazing. ``` dd will simply recreate the old partition scheme, as it is a bitwise copy & applies no 'intelligence' to the operation. ```

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread tomas
On Sat, Feb 03, 2024 at 01:17:05AM +0700, Dmitry wrote: > > Just copy files from LiveCD (it should have EFI/Boot/bootx64.efi) to the > ESP partition on the USB stick. > > As I understand right now `dd` command applied to a device will copy all > information including partitions table. Thus:

Re: Wine in bullseye, which way to go?

2024-02-02 Thread Greg Wooledge
On Fri, Feb 02, 2024 at 08:59:18PM +0100, Marco Moock wrote: > According to documentation I found in the internet, it is possible to > upgrade a Debian system to the amd64 architecture. That isn't an upgrade, and it isn't a supported operation. Some people have *done* it, but it's very much

Re: Automatically installing GRUB on multiple drives

2024-02-02 Thread hw
On Fri, 2024-02-02 at 14:41 +0100, Franco Martelli wrote: > On 31/01/24 at 22:51, hw wrote: > > > [...] > > > If your suggested solution is "use hardware RAID", no need to repeat > > > that one though: I see you said it in a few other messages, and that > > > suggestions has been received. Assume

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Thomas Schmitt
Hi, Dmitry wrote: > Yep. `dd` copy partitions table. Amazing. Not so amazing after you realize that a partition table is just data on the storage medium and not some special property of the storage device. dd copies data. If these data contain a partition table and get copied to the right place

Re: IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Ralph Aichinger
On Fri, 2024-02-02 at 15:31 +0100, Marco Moock wrote: > It should be if you enter "save" in the nmcli. Thanks, I did not realize this was possible. I probably will use nmcli more often in the future. Ralph

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Dmitry
> Just copy files from LiveCD (it should have EFI/Boot/bootx64.efi) to the ESP partition on the USB stick. As I understand right now `dd` command applied to a device will copy all information including partitions table. Thus: dd if=debian-xx.iso of=/dev/sdb bs=4M status=progress; sync Would

Re: problèmes de copie sur un montage smb, crash kernel

2024-02-02 Thread testeur
J'ai tenté les trois options de montage mais pas mieux. Le log du crash noyau est quasi identique. Ça semble venir du noyau 6.1.0-17. Car avec le noyau 6.1.0-10, pas de problèmes Je vais rester sur le noyau précédent... Cdlt On 01/02/2024 10:11, Michel Verdier wrote: Le 31 janvier 2024

Re: Q: Gnome network odd

2024-02-02 Thread David Wright
On Fri 02 Feb 2024 at 07:37:34 (+), Tixy wrote: > On Wed, 2024-01-31 at 22:12 -0600, David Wright wrote: > > > I also have a more vague memory that you could put config into > > > /etc/network/interfaces then in some circumstance NetworkManager > > > would > > > not try and manage that

Re: Wine in bullseye, which way to go?

2024-02-02 Thread Marco Moock
Am 01.02.2024 um 18:03:47 Uhr schrieb sko...@uns.ac.rs: > I am not sure what do you mean by "install that architecture". I have > been using i386 versions of Debian, and I do not plan to reinstall it > now just because the CPU may allow that. So instead, I ask whether it > was expected and

Effacement réel de fichiers

2024-02-02 Thread kaliderus
Bonjour, bonsoir chers Debianeux, Connaissez-vous un outil qui permette de mettre des 0 (ou des 1 ou n'importe quoi aléatoirement) partout là où un fichier n'est plus référencé dans le système de fichiers (du ext4 dans mon cas) ? En effet, mon idée est d'avoir une confidentialité maximale (avec

Re: IPv6, ip token, NetworkManager and accept_ra

2024-02-02 Thread Tim Woodall
On Fri, 2 Feb 2024, Ralph Aichinger wrote: Hi fellow Debian users! In my quest to advance the IPv6 preparedness of my home LAN I want to find a solution to use IP tokens on all my clients. IP tokens (keeping the host part of the IPv6 address static while getting the subnet part by SLAAC) seem

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Tim Woodall
On Thu, 1 Feb 2024, Marco Moock wrote: Am 01.02.2024 um 19:20:01 Uhr schrieb Tim Woodall: $ cat /boot/efi/EFI/XEN/xen.cfg [global] default=debian [debian] options=console=vga smt=true kernel=vmlinuz root=/dev/mapper/vg--dirac-root ro quiet ramdisk=initrd.img menuentry "Xen EFI NVME" {

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Franco Martelli
On 02/02/24 at 15:12, Dmitry wrote: Going to read carefully. https://www.debian.org/releases/buster/amd64/ch04s03.en.html Interesting that Buster has more documentation than current release. Nope, maybe you gave a quick read, the release notes of the current release ¹ are exhaustive. If

Re: su su- sudo dont work

2024-02-02 Thread CL
Am 27.01.24 um 10:23 schrieb Hans: I see this exactly as you and are watching this list for may years. However, I wanted not to be so directly because I want not to blame anyone on this list. But since the beginning, I had the suspicion, that someone just wants to make fun with us. Aleady

AW: AW: AW: su su- sudo dont work

2024-02-02 Thread Schwibinger Michael
Good afternoon Before there was panic su su - sudo did work. Somebody does have experience with rescue mode? Regards Sophie Von: Greg Wooledge Gesendet: Freitag, 26. Januar 2024 17:45 An: debian-user@lists.debian.org Betreff: Re: AW: AW: su su- sudo dont

Re: Effacement réel de fichiers

2024-02-02 Thread Sébastien Dinot
kaliderus a écrit : > J'ai beau googler le sujet depuis quelques jours je ne trouve rien, ou > alors je n'ai pas les bons mots clés, snif... Le bon mot-clé pour ce genre de besoin est « wipe », y compris avec APT : $ apt search disk wipe bleachbit/testing 4.6.0-1 all supprimer les fichiers

Network Problem: Redirection

2024-02-02 Thread Charles Curley
I have an interesting network problem. I have a samba service on hawk. I have an alias for it in DNS: root@hawk:~# host samba samba.localdomain is an alias for hawk.localdomain. hawk.localdomain has address 192.168.100.6 root@hawk:~# host hawk hawk.localdomain has address 192.168.100.6

Re: Network Problem: Redirection

2024-02-02 Thread Marco Moock
Am 02.02.2024 um 14:03:46 Uhr schrieb Charles Curley: > root@hawk:~# host samba > samba.localdomain is an alias for hawk.localdomain. > hawk.localdomain has address 192.168.100.6 > root@hawk:~# ping samba > PING samba (192.168.122.1) 56(84) bytes of data. Sorry for the first post. Your

Re: Effacement réel de fichiers

2024-02-02 Thread kaliderus
Dans leur description sfill du paquet secure-delete et shred semblent faire le boulot, c'est bien merci. Il est vrai que la logique interne du SSD peut soulever des questions, j'y ai pensé mais je n'ai pas l'ambition de creuser ce sujet, je ferai des tests à l'occasion. Quant à la destruction

Re: Network Problem: Redirection

2024-02-02 Thread Greg Wooledge
On Fri, Feb 02, 2024 at 02:03:46PM -0700, Charles Curley wrote: > root@hawk:~# host samba > samba.localdomain is an alias for hawk.localdomain. > hawk.localdomain has address 192.168.100.6 host(1) looks in DNS only. It doesn't do the standard name resolution that applications do. > root@hawk:~#

Re: Effacement réel de fichiers

2024-02-02 Thread kaliderus
En complément, extrait de man srm : L'algorithme de nettoyage est basé sur la publication "Secure Deletion of Data from Magnetic and Solid-State Memory". Donc à priori les SSD sont bien pris en charge, j'ai fait un petit test et vu le temps pour supprimer quelques 100Mo et la charge du disque

Re: what keyboard do you use?

2024-02-02 Thread Timothy M Butterworth
On Fri, Feb 2, 2024 at 8:42 PM Gremlin wrote: > On 2/2/24 20:25, Lee wrote: > > I bought a Dell desktop in 2019 and the keyboard just died :( > > > > ssh in from another machine & do a 'sudo reboot now' and get an alert > > about 'Keyboard not found.' on power up. The keyboard also doesn't > >

Re: Effacement réel de fichiers

2024-02-02 Thread Basile Starynkevitch
On 2/2/24 21:32, kaliderus wrote: Bonjour, bonsoir chers Debianeux, Connaissez-vous un outil qui permette de mettre des 0 (ou des 1 ou n'importe quoi aléatoirement) partout là où un fichier n'est plus référencé dans le système de fichiers (du ext4 dans mon cas) ? En effet, mon idée est

Re: Network Problem: Redirection

2024-02-02 Thread Charles Curley
On Fri, 2 Feb 2024 16:52:48 -0500 Greg Wooledge wrote: > Well, we don't know what's "right" or "wrong" on your networks. These > are private (non-routable) addresses with no meaning to anyone but you > and your fellow network denizens. Agree. > > If you need different name resolution

Re: what keyboard do you use?

2024-02-02 Thread Gremlin
On 2/2/24 20:25, Lee wrote: I bought a Dell desktop in 2019 and the keyboard just died :( ssh in from another machine & do a 'sudo reboot now' and get an alert about 'Keyboard not found.' on power up. The keyboard also doesn't work in another machine so it's really & truly dead. I figure

Re: Network Problem: Redirection

2024-02-02 Thread Charles Curley
On Fri, 2 Feb 2024 16:28:06 -0500 Greg Wooledge wrote: > > However, when I try to ping samba by host name: > > > > root@hawk:~# ping samba > > PING samba (192.168.122.1) 56(84) bytes of data. > > Note that this is a *different* IP address. Good catch, thank you. > > > # For the benefit of

busybox-syslogd remote and memory logging

2024-02-02 Thread Greg
Hi there, I'm using busybox-syslogd. I'm trying to make it log to remote system and to memory buffer. According to manual I should use -R 192.168.1.1 for remote logging and -C128 option for memory buffer. Unfortunately, when used together logs are only sent to remote server. On Bookworm the

Re: Network Problem: Redirection

2024-02-02 Thread Charles Curley
On Fri, 2 Feb 2024 15:52:41 -0700 Charles Curley wrote: > But I don't think that will solve the routing problem. Well, I was wrong. That did solve the routing problems. I moved the apt-proxy line for the VMs' benefit into a VM's /etc/hosts and took it out of hawk's /etc/hosts. samba is now an

what keyboard do you use?

2024-02-02 Thread Lee
I bought a Dell desktop in 2019 and the keyboard just died :( ssh in from another machine & do a 'sudo reboot now' and get an alert about 'Keyboard not found.' on power up. The keyboard also doesn't work in another machine so it's really & truly dead. I figure there's a high percentage of

Re: what keyboard do you use?

2024-02-02 Thread Nate Bargmann
* On 2024 02 Feb 19:26 -0600, Lee wrote: > I bought a Dell desktop in 2019 and the keyboard just died :( > > ssh in from another machine & do a 'sudo reboot now' and get an alert > about 'Keyboard not found.' on power up. The keyboard also doesn't > work in another machine so it's really &

Re: Script BASH gestion des espaces des noms de fichier

2024-02-02 Thread Pierre Malard
Essaie des cotes dans tes attributions de noms. Par exemple : TOTO="${NomFic}" avec NomFic="Mon Fichier" Pareillement cote les appels : Cmd —variable "${NomFic}" Par exemple. Le fait de coter l’appel de variable avec des double cote permet à BASH de considérer NomFic comme un seul paramètre

Re: Network Problem: Redirection

2024-02-02 Thread Charles Curley
On Fri, 2 Feb 2024 22:10:19 +0100 Marco Moock wrote: > Sorry for the first post. > Your problem is located in the name resolution. > > Show /etc/nsswitch.conf I have not touched this. root@hawk:~# cat /etc/nsswitch.conf # /etc/nsswitch.conf # # Example configuration of GNU Name Service

Re: Network Problem: Redirection

2024-02-02 Thread Greg Wooledge
> > > # For the benefit of virtual machines. > > > 192.168.100.12 apt-proxy > > > 192.168.122.1 samba samba.localdomain > > > > And that's where it came from (/etc/hosts). If this IP address is > > wrong, then it shouldn't be in here. > > Gnrrr. It's right for the virtual network

Re: Effacement réel de fichiers

2024-02-02 Thread ajh-valmer
J'avais essayé un de ces outils, mais ça prenait tellement de temps que j'ai stoppé. > Le bon mot-clé pour ce genre de besoin est « wipe », y compris avec > $ apt search disk wipe > bleachbit/testing 4.6.0-1 all > supprimer les fichiers inutiles du système > dcfldd/testing 1.9.1-1 amd64 > version

Re: what keyboard do you use?

2024-02-02 Thread ghe2001
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Friday, February 2nd, 2024 at 6:25 PM, Lee wrote: > I bought a Dell desktop in 2019 and the keyboard just died >

Re: Effacement réel de fichiers

2024-02-02 Thread Sébastien Dinot
Sébastien Dinot a écrit : > kaliderus a écrit : > > J'ai beau googler le sujet depuis quelques jours je ne trouve rien, > > ou alors je n'ai pas les bons mots clés, snif... > > Le bon mot-clé pour ce genre de besoin est « wipe » Et sur un moteur de recherche, « linux file wiping » donne de bons

Re: Network Problem: Redirection

2024-02-02 Thread Marco Moock
Am 02.02.2024 um 14:03:46 Uhr schrieb Charles Curley: > From apt-proxy (192.168.100.12): icmp_seq=2 Redirect Host(New > nexthop: hawk.localdomain (192.168.100.6)) Check the routing table on apt-proxy. ICMP redirect happens if you have 2 routers on the same ethernet link and the router you try to

Re: Network Problem: Redirection

2024-02-02 Thread Gremlin
On 2/2/24 16:28, Greg Wooledge wrote: On Fri, Feb 02, 2024 at 02:03:46PM -0700, Charles Curley wrote: root@hawk:~# host samba samba.localdomain is an alias for hawk.localdomain. hawk.localdomain has address 192.168.100.6 host(1) looks in DNS only. It doesn't do the standard name resolution

Re: AW: AW: su su- sudo dont work

2024-02-02 Thread Timothy M Butterworth
On Fri, Feb 2, 2024 at 7:17 PM Schwibinger Michael wrote: > Good afternoon > > Before there was panic > > su > su - > sudo > did work. > > Somebody does have experience with > rescue mode? > If you are in Single User Mode you are already root and do not need: su or sudo. > Regards > Sophie >

Re: Wine in bullseye, which way to go?

2024-02-02 Thread Timothy M Butterworth
On Fri, Feb 2, 2024 at 2:59 PM Marco Moock wrote: > Am 01.02.2024 um 18:03:47 Uhr schrieb sko...@uns.ac.rs: > > > I am not sure what do you mean by "install that architecture". I have > > been using i386 versions of Debian, and I do not plan to reinstall it > > now just because the CPU may allow

Re: what keyboard do you use?

2024-02-02 Thread songbird
Lee wrote: > I bought a Dell desktop in 2019 and the keyboard just died :( ... a Corsair K70 CORE RGB Mechanical Gaming Keyboard. my previous keyboard was starting to miss key presses and duplicating others. since i also needed a new mouse it was a day to get a refresh. paid about $80 for

Re: what keyboard do you use?

2024-02-02 Thread David Christensen
On 2/2/24 17:25, Lee wrote: I bought a Dell desktop in 2019 and the keyboard just died :( ssh in from another machine & do a 'sudo reboot now' and get an alert about 'Keyboard not found.' on power up. The keyboard also doesn't work in another machine so it's really & truly dead. I figure

Re: what keyboard do you use?

2024-02-02 Thread Marco Moock
Am Fri, 2 Feb 2024 20:09:09 -0600 schrieb Nate Bargmann : > I have several of the now classic IBM Model M keyboards I procured in > the '90s. Modern BIOSes don't like them even with a PS/2 to USB > adapter so I gave up on them. They need more power that normal keyboards, so not every converter

Re: what keyboard do you use?

2024-02-02 Thread Joe Pfeiffer
Lee writes: > I bought a Dell desktop in 2019 and the keyboard just died :( > > ssh in from another machine & do a 'sudo reboot now' and get an alert > about 'Keyboard not found.' on power up. The keyboard also doesn't > work in another machine so it's really & truly dead. > > I figure there's

Re: what keyboard do you use?

2024-02-02 Thread Stefan Monnier
> I figure there's a high percentage of keyboard jockeys here so .. > which keyboard do you like and why? My favorites are the old Thinkpad USB UltraNav travel keyboards (http://salestores.com/stores/images/images_747/31P9490.jpg). They even come with a 2-port USB hub so you can connect a mouse

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Max Nikulin
On 03/02/2024 02:51, Thomas Schmitt wrote: Max Nikulin wrote: Just copy files from LiveCD (it should have EFI/Boot/bootx64.efi) to the ESP partition on the USB stick. The /EFI/boot directory of a bootable Debian ISO usually does not contain the full GRUB equipment for EFI. Important parts of

Re: what keyboard do you use?

2024-02-02 Thread Ralph Aichinger
On Fri, 2024-02-02 at 20:25 -0500, Lee wrote: > I figure there's a high percentage of keyboard jockeys here so .. > which keyboard do you like and why? I like the flat style similar to what is in many notebooks. Current favourites are the Apple keyboards (expensive though, for what they are), the

Re: install Kernel and GRUB in chroot.

2024-02-02 Thread Max Nikulin
On 03/02/2024 02:15, Tim Woodall wrote: $ cat /boot/efi/EFI/XEN/xen.cfg [...] I'd be interested if there's a way to tell grubx64.efi to look for a particular partition UUID. An example of such grub.cfg from EFI/debian has been posted already in this thread

Re: what keyboard do you use?

2024-02-02 Thread jeremy ardley
Lee wrote: I bought a Dell desktop in 2019 and the keyboard just died :( I have decided to go to the mechanical keyboard style where you get positive feedback on key strokes. For me there are two 'colors' that are interesting Blue which has strong tactile feedback, requires slight force,

Re: what keyboard do you use?

2024-02-02 Thread Marco Moock
Am Fri, 2 Feb 2024 20:25:09 -0500 schrieb Lee : > I figure there's a high percentage of keyboard jockeys here so .. > which keyboard do you like and why? IBM Model M. They are still made by the company Unicomp, with PS/2, DIN or USB.