Re: disable GUI/X?

2024-06-19 Thread Toni Mas Soler
El Wed, 19 Jun 2024 08:47:58 +0200 va escriure el següent: > On Wed, Jun 19, 2024 at 04:39:50AM -, David Chmelik wrote: > > On Tue, 18 Jun 2024 22:39:15 -0400, Felix Miata wrote: > > > > > David Chmelik composed on 2024-06-19 02:24 (UTC): > > > > > >> How can I disable GUI/X for next bo

Re: Having ten thousands of mount bind causes various processes to go into loops

2024-06-14 Thread Toni Mas Soler
El Fri, 14 Jun 2024 11:30:50 +0200 Julien Petit va escriure el següent: > > What processes are CPU hungry? > > On a vanilla debian 11 : udisksd, gvfs-udisks2-vo, (fstrim), find > > > Perhaps it is not a Debian-specific bug, just more active usage of > > sandboxing in systemd. If some applicat

Re: NVidia 340 video driver in Bookworm?

2024-06-09 Thread Toni Mas Soler
El Fri, 07 Jun 2024 14:56:23 -0700 Van Snyder va escriure el següent: > On Fri, 2024-06-07 at 22:47 +0200, Hans wrote: > > Just a hint: Sometimes the nvidia-config module says, you need > > 340.xx, but this is not always true. My card (with th eolder > > kernel) was running 390.xx, although th es

Re: Passwords

2023-01-16 Thread Toni Mas Soler
You don't need a live-usb/cd. If your boot system is grub you only have to change command to exec=/bin/bash Once you are in your system you can change root password and others. Toni Mas Missatge de Stanislav Vlasov del dia dt., 17 de gen. 2023 a les 7:15: > > вт, 17 янв. 2023 г. в 11:01, Davi

Re: update, reboot required?

2022-03-19 Thread Toni Mas Soler
I restart Dbus from time to time. Actually, I stop Dbus if i don't need, that is when I do not use X (almost allways). Do you mean my action is not effective? Toni Mas Missatge de piorunz del dia ds., 19 de març 2022 a les 5:55: > > On 19/03/2022 02:32, Lee wrote: > > How to tell if I need to r

Re: User group "users"

2022-01-22 Thread Toni Mas Soler
Please, note that's my own criteria. - Each new user must have their own group to prevent security issues. - Most of users are per-app users, following (more or less Android methods). So only real (login) users are added manually in the GID=100. Thus they can share what they want only who then wa

Re: write only storage.

2021-09-21 Thread Toni Mas Soler
I use to backup my iPhone's photo library using a stfp connection (all in the same directory in my PC). Thus, I can chattr +i the only directory needed and nobody can remove. I cannot understand why chattr does not achieve you. Toni Mas GPG 3F42A21D84D7E950 Sent with ProtonMail Secure Email.

Re: sources.list 's security line

2021-09-06 Thread Toni Mas Soler
I use de 2n one with no problems. My sources.list: deb http://security.debian.org/ stable-security main non-free contrib deb http://security.debian.org/ oldstable/updates main non-free contrib Since in http://security.debian.org/dists/stable-security/ there is non-free floder, I keep it in my so

Re: kernel: perf: interrupt took too long

2021-05-25 Thread Toni Mas Soler
This is usual on my machine after reboot. It could be an alert if after some time doing same work you see this message again. https://bbs.archlinux.org/viewtopic.php?id=187636 Toni Mas GPG 3F42A21D84D7E950 Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ En dimarts 25 de mai

Re: rsync to NAS for backup

2021-02-13 Thread Toni Mas Soler
Is there an alternative if you want an incremental backup? Obviously you could use tar-ed archives with unprivileged permissions. If you did, you would get a huge network overhead. thks Toni Mas GPG 3F42A21D84D7E950 Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ En dissa

Re: Allow only selected USB

2021-02-12 Thread Toni Mas Soler
Alternatively, if you run udev, you can add new rule. Fixed: /etc/udev/rules.d Volatile: /run/udev/rules.d I believe this example is autoexplained: 8 # Do not use this rule if I'm not a USB 9 SUBSYSTEM!="usb", GOTO="usbgend" 10 # Only verify on plugin 11 ACTION=="remove", GOTO="usbgend" 12

Re: RAID installation at boot questions

2020-11-14 Thread Toni Mas Soler
I have more or less the same configuration. I am a no-systemd user (yet?) so I cannot show you the full example. You could verify: - Is there a mdraid1x module in your grub menu entry? - If I not wrong you made your RAID by mdadm metadata version 1.2. I think in this version metadata is located at

Re: ssh session times out annoyingly fast, why?

2020-09-22 Thread Toni Mas Soler
First, you should be sure it is not a network issue. You could open a terminal and run, for example, top program. This avoid any timeout configured. If this does not work, you should follow for a network issue, otherwise we can see sshd's config file. Toni Mas Missatge de Britton Kerin del dia d

Re: Question on 'dpkg --get-selections'

2020-09-12 Thread Toni Mas Soler
I do this job using aptitude instead apt: /usr/bin/aptitude search '~i !~M' -F '%p' --disable-columns Toni Mas Missatge de Sven Joachim del dia ds., 12 de set. 2020 a les 9:29: > > On 2020-09-11 22:03 -0700, Marc Shapiro wrote: > > > Is there any option to have 'dpkg --get-selections' NOT includ

Re: add 2FA to ssh

2020-08-13 Thread Toni Mas Soler
I think 2FA first is better. Thus you don't have to type your password if you have a wrong 2FA. Toni Mas Missatge de Pòl Hallen del dia dj., 13 d’ag. 2020 a les 13:38: > > Hi folks :) > > > what it better with 2FA: at ssh login request first 2FA authentication > next ssh password or viceversa? >

Re: copy/paste in vim (in terminal)

2020-08-11 Thread Toni Mas Soler
Open your file using vi -C <> That works fine for me. Then you can alias vi as vi -C using "alias vi='vi -C'" Toni Mas Missatge de Greg Wooledge del dia dt., 11 d’ag. 2020 a les 13:57: > > On Tue, Aug 11, 2020 at 09:05:06AM +0200, Miguel A. Vallejo wrote: > > Richard Hector () wrote > > > > I u