Re: Different Debian for different users

2025-04-27 Thread l0f4r0
ile" you mean "at the same time"? Otherwise, maybe dual/multi-boot could be a solution? l0f4r0

Re: General Questions

2023-08-27 Thread l0f4r0
le.ext * dd if=./your_file.ext | clamscan - l0f4r0

Re: General Questions

2023-08-27 Thread l0f4r0
rite to ClamAV dedicated mailing list directly (clamav-us...@lists.clamav.net). It's free as well and you can subscribe through https://lists.clamav.net/mailman/listinfo/clamav-users l0f4r0

Re: Is there no other tool but Zim, the graphical text editor based on wiki technologies, in Debian, to create intertwined wiki pages locally?

2023-06-15 Thread l0f4r0
s it. > In that case, there is cherrytree as well. l0f4r0

Re: Which Diff tool could I use for visually comparing two text files where Word Wrap is possible?

2023-03-31 Thread l0f4r0
wrap-with-diff-y l0f4r0

Re: youtube-dl → yt-dlp, was Re: OT: Detecting ISP throttling (was: Re: Potentially OT. Videos lagging & buffering in any browser but Google Chrome.)

2023-03-30 Thread l0f4r0
option/switch. How do you get that URL? Via your browser resource/code inspector? l0f4r0

Re: youtube-dl → yt-dlp, was Re: OT: Detecting ISP throttling (was: Re: Potentially OT. Videos lagging & buffering in any browser but Google Chrome.)

2023-03-30 Thread l0f4r0
uspect, it's because to access video on that FamilySearch > page, one is required to be logged in. IDK whether yt-dlp can handle > that. > Interesting theory but I can play that specific video in my browser without being logged in ;) l0f4r0

Re: youtube-dl → yt-dlp, was Re: OT: Detecting ISP throttling (was: Re: Potentially OT. Videos lagging & buffering in any browser but Google Chrome.)

2023-03-30 Thread l0f4r0
generic extractor (documentation says "Generic downloader that works on some sites") but it doesn't work for familysearch.org visibly... As mentioned by David, you should try the following command to see (hopefully) that your yt-dlp works just fine: yt-dlp http://www.youtube.com/watch?v=bKzonnwoR2I l0f4r0

Re: needrestart question

2023-02-15 Thread l0f4r0
b.com/liske/needrestart/issues/249 You may feed the tickets with your case. l0f4r0

Re: Cheat but no cheatsheets

2022-08-19 Thread l0f4r0
Hi, 19 août 2022, 14:08 de cu...@free.fr: > curl cheat.sh/:list > > Or am I missing something once again, I wonder vaguely. > `curl cht.sh/...` is quicker to type ;) l0f4r0

Re: Cheat but no cheatsheets

2022-08-19 Thread l0f4r0
e cheatsheets > > Is there a file of cheatsheets to download? > As you said you installed cheat, then you can type: cht.sh :list Without client, you need to use: curl cht.sh/:list <http://cht.sh/:list> l0f4r0

Re: tmux scroll remote session

2022-03-20 Thread l0f4r0
t (4) I guess ... (have > they been renamed prior/next? BTW) > If you want to scroll inside the inner tmux, you should use your prefix twice I think. So, in your case: C-b C-b PageUP/DOWN Best regards,  l0f4r0

Re: update, reboot required?

2022-03-19 Thread l0f4r0
restarted. No containers need to be restarted. No user sessions are running outdated binaries. Best regards, l0f4r0

Re: mpd, clementine, lxmusic, qmmp, quodlibet not playing!

2022-03-18 Thread l0f4r0
(for PulseAudio for example). I had the same problem some time ago with only Firefox not getting me any sound. In pavucontrol, "playback" tab, Firefox was on "mute" indeed while playing. No more issue with it since I've changed its configuration.  HIH l0f4r0

Re: How to NOT automatically mount a specific partition of an external device?

2021-12-01 Thread l0f4r0
ad your modified /etc/fstab file? systemctl daemon-reload Sources: *  https://unix.stackexchange.com/questions/477794/how-to-force-os-reload-of-fstab/577321 *  https://www.systutorials.com/how-to-force-systemd-to-refresh-or-reloaded-a-changed-fstab-on-linux/ * https://www.suse.com/support/kb/doc/?id=18576 l0f4r0

Re: Light-Locker (Was Up-to-date Bullseye, Power Save turned ... Monitor off. ...)

2021-11-16 Thread l0f4r0
Thank you & Best regards, l0f4r0

Re: LTS versions - confusion

2021-09-14 Thread l0f4r0
years LTS support after that. > Best regards, l0f4r0

Re: copy directory tree, mapping to new owners

2021-09-12 Thread l0f4r0
ven in the aforementioned `--mkpath` switch by the way. The moral is: Pay attention to the single one character you type on the command line! Best regards, l0f4r0

Re: Debian bug report closed or open?

2021-09-12 Thread l0f4r0
BTS. For example regarding sudo package: https://bugs.debian.org/cgi-bin/pkgreport.cgi?package=sudo&archive=yes Best regards, l0f4r0

Re: Debian bug report closed or open?

2021-09-12 Thread l0f4r0
ot; header on the web page: > > Done: Marc Haber <> mh+debian-packa...@zugschlus.de> > > Well spotted Thomas! It makes sense indeed with the email address  used to close a bug. Thanks & have a great week-end! l0f4r0

Debian bug report closed or open? (was: Will my reportbug report be seen?)

2021-09-12 Thread l0f4r0
ived an email notification for that (I'm the submitter) but it's written nowhere in the webpage itself (at least I can't find it...). [1] : https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=958402 l0f4r0

Re: copy directory tree, mapping to new owners

2021-09-12 Thread l0f4r0
example ("my" and "dest" don't exist yet): rsync -a src/ dest => "dest" is created rsync -a src/ my/dest => error, "my" and "dest" don't exist (and are not created then) rsync --mkpath -a src/ my/dest => "my" and "dest" are created l0f4r0

Re: copy directory tree, mapping to new owners

2021-09-11 Thread l0f4r0
following: rsync -a mysite/doc_root mysite_test/doc_root => you will get an extra "doc_root" folder (the source one) in your dest, i.e. : mysite_test/doc_root/doc_root and then the content of doc_root source rsync -a mysite/doc_root/ mysite_test/doc_root => your doc_root (destination) folder will get doc_root content (source) directly Best regards, l0f4r0

Re: explanation of first column "v" is hiding

2021-07-26 Thread l0f4r0
he first character of each line indicates the current state of the package: the most common states are p, meaning that no trace of the package exists on the system, c, meaning that the package was deleted but its configuration files remain on the system, i, meaning that the package is installed, and v, meaning that the package is virtual." Best regards, l0f4r0

Issues, question and feedback on ncmpcpp

2021-07-18 Thread l0f4r0
e killing features so far. Do you see some specific ones or is it the "whole set" that has charmed you? Thank you in advance & have a great sunday :) l0f4r0

Re: Useless use of shell pipelines [was: Useful use of dd]

2021-07-03 Thread l0f4r0
-ne 's/bla/foo/ && print if //' > useless-use-of-grep > /dev/null; done > > real 0m23.624s > user 0m14.308s > sys 0m10.826s > I'm not in front of my Linux terminal, can someone launch the `time` command for my `sed` above please ? :) Best regards,  l0f4r0

Re: cannot mount smartphone anymore

2021-06-13 Thread l0f4r0
Hi, 13 juin 2021, 17:51 de cu...@free.fr: > On 2021-06-13, Emanuel Berg wrote: > >> l0f4r0 wrote: >> >>> Removing usbguard is maybe a drastic decision, isn't? >>> Or maybe you don't want this package anymore for >>> other reasons? >&g

Re: cannot mount smartphone anymore

2021-06-12 Thread l0f4r0
e to connect: sudo usbguard append-rule 'allow id : serial "" name "" hash "" parent-hash "" with-interface XX:XX:XX' sudo usbguard list-devices will tell you the correct parameters (of course usbguard must be running and your device connected/blocked). Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-06-02 Thread l0f4r0
Stella, Cannot remember if you have Gnome installed but you should have a look at  https://unix.stackexchange.com/a/594287, especially ALL the associated comments (click on "Show 7 more comments"). HTH l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-06-02 Thread l0f4r0
3-apt 1.8.4.3 > amd64Python 3 interface to libapt-pkg > ii synaptic 0.84.6 > amd64Graphical package manager > ii task-laptop 3.53 > all laptop > Nothing shocking here... What about the following commands? cat /etc/anacrontab systemctl list-timers Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-06-02 Thread l0f4r0
t. At least I am, so you can omit >> my email address in each of your answers (I'm currently receiving all your >> emails twice) ;) >> > > I apologize if I have caused inconvenience to you and shall remember to > remove your email address when I reply to yours. > No worries... Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-05-29 Thread l0f4r0
s well, like widgets...) * widgets/applets for your favorite desktop environment (I can't help you, I don't use any...) NB: If not explicitely mentioned by a debian-user poster, most of the time (s)he is a subscriber of this mailing-list. At least I am, so you can omit my email address in each of your answers (I'm currently receiving all your emails twice) ;) Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-05-28 Thread l0f4r0
se of package unattended-upgrades. So you would have to dig somewhere else... l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-05-28 Thread l0f4r0
ooted and observed the same behavior since your posts? >> > After rebooting, I have no opportunity to observe the same behavior since my > posts because there are no software/security updates that are relevant to my > Debian system at the time of writing this email. Based on my past experience, > Debian only downloads software/security updates for my kernel and the > installed packages. The installed packages on my system are minimal. I'll > have to wait patiently for the next software/security updates for my > installed packages. > Ok, let's wait and see then. You can remove the package "unattended-upgrades" if you want via `sudo apt remove` or `sudo apt purge`. Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-05-27 Thread l0f4r0
seems unattended-upgrades is still installed. You confirm that you never ran something like the following? sudo apt remove unattended-upgrades sudo apt purge unattended-upgrades What give you the next commands please? apt-config dump | grep -i unatt apt-config dump | grep -i APT::Periodic NB: Have you rebooted and observed the same behavior since your posts? Best regards, l0f4r0

Re: How do I permanently disable unattended downloads of software/security updates?

2021-05-26 Thread l0f4r0
Hi, Can you type the following commands in a terminal and give us the results please (use `sudo` if necessary)? ls -al /etc/apt/apt.conf.d/ dpkg -l | grep -i unattended-upgrades cat /lib/systemd/system/apt-daily.timer cat /etc/systemd/system/apt-daily.timer.d/override.conf Best regards, l0f4r0

Re: Ghost cronjob

2021-05-08 Thread l0f4r0
Hi, 5 mai 2021, 04:48 de deb...@lionunicorn.co.uk: > After all, it's easy to override it with > > # ln -s /dev/null /etc/systemd/system/btrbk.service > You may need the `-f` (force) switch if btrbk.service file already exists. Best regards, l0f4r0

Re: running cronjob output

2021-04-20 Thread l0f4r0
mail indeed... Well done & thanks ;) l0f4r0

Re: running cronjob output

2021-04-20 Thread l0f4r0
gt; Thus, tee. > Understood but why `tee` and not a simple redirection to a file (see below)? >> I'm asking because you suggest  `2>&1 | tee /var/tmp/my-job-output` and not >> `&> /var/tmp/my-job-output`... >> > Your syntax makes no sense. You proposed this? > > /my/job & /var/tmp/my-job-output > Absolutely not, you missed my redirection ;) My suggestion was the following: /my/job &>/var/tmp/my-job-output Best regards, l0f4r0

Re: running cronjob output

2021-04-20 Thread l0f4r0
where can the OP expect the output to be automatically displayed please (I'm not speaking about the file of course)? I'm asking because you suggest  `2>&1 | tee /var/tmp/my-job-output` and not `&> /var/tmp/my-job-output`... Best regards, l0f4r0

Re: Problems opening Linuxquestions link [WAS Re: Attempt to use the chipset NVIDIA Corp MCP79 [GeForce 8200M G] (rev b1) (prog-if 00 [VGA controller]) with Dix. Teacher-Guide, Mr. Felix Miata]

2021-04-19 Thread l0f4r0
for competent X operation are: * amdgpu (kernel) plus amdgpu (DDX) or modesetting (DIX) for current and non-ancient AMD APUs/GPUs/IGPs * radeon (kernel) plus modesetting (DIX) or radeon (DDX) for ancient AMD/ATI GPUs/IGPs * gma500 (kernel) or i915 (kernel) plus intel (DDX) or modesetting (DIX) for Intel GPUs/IGPs * nouveau (kernel) plus modesetting (DIX) or nouveau (DDX) for NVidia GPUs Best regards, l0f4r0

Re: [OT] Help with clonezilla-live: LUKS/LVM2 image backup without partclone.dd

2021-04-14 Thread l0f4r0
7/nvme0n1p5.dd-ptcl-img.zst Best regards, l0f4r0

[OT] Help with clonezilla-live: LUKS/LVM2 image backup without partclone.dd

2021-04-14 Thread l0f4r0
y LVM be shutdowned as well? * Do you have any advice to share? Thank you in advance :) Best regards, l0f4r0

Re: How to save filtered less results in a file or on stdout

2021-04-11 Thread l0f4r0
ly know why but sometimes I like `less` simplicity (i.e. few things to remember) hence my initial question :) NB in vim: `v/pattern/d` = `g!/pattern/d` Thanks again! Best regards, l0f4r0

Re: How to save filtered less results in a file or on stdout

2021-04-04 Thread l0f4r0
e pattern, > and so on, using Left/RightArrow, or even use " if the > pattern itself contains ' characters. > > I tend to paste with Shift-Insert (needs less hand-eye coordination). > It works indeed. I just thought there was an immediate, simple and dedicated command for that. I suppose everyone's needs/workflows are different ;) Thanks & Best regards, l0f4r0

Re: Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-04-04 Thread l0f4r0
ackages built from the one linux-signed-amd64 source > package: > Can you tell me please how one can know that?  > why would one create 108 identical source packages with different names when > one is sufficient? ;-) > ;) [*] : https://lists.debian.org/debian-backports/2021/03/msg00013.html Best regards, l0f4r0

Re: Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-03-31 Thread l0f4r0
f use here. > Actually, what I need is just linux-image-5.10.0-0.bpo.4-amd64 but it hasn't been made available yet. This one will be related to kernel 5.10.19-1~bpo10+1. > Perhaps it's worth subscribing to debian-backports-changes and > debian-backports. You can post to the latter. > That's a good suggestion, thanks :) Best regards, l0f4r0

Re: Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-03-29 Thread l0f4r0
aintain my position. The package you are quoting (lastly) is maybe more recent but *unsigned*. However, I need the signed one because I use Secure Boot... ;) Best regards, l0f4r0

Re: How to save filtered less results in a file or on stdout

2021-03-28 Thread l0f4r0
own investigation. And finally, I'm thinking that it would be too bad to lose the remaining lines so I'm looking for a way to save them eventually. Of course, you're right, if I knew beforehand what to look for, there are more appropriate and advanced tools (even sed)! :) Best regards, l0f4r0

Re: Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-03-28 Thread l0f4r0
problem with that but maybe this subtlety could be stated more explicitely somewhere? Just a suggestion so one doesn't have to dig too much to understand that... Best regards, l0f4r0

Re: How to save filtered less results in a file or on stdout

2021-03-28 Thread l0f4r0
one doesn't need to reenter the same pattern twice for such a basic need... No easy condensed way for that? :) Best regards, l0f4r0

How to save filtered less results in a file or on stdout

2021-03-28 Thread l0f4r0
;!" command inside less. Indeed, commands like "|", "-o" or "s" inside less don't seem to take filtering into account... Thanks in advance :) Best regards, l0f4r0

Re: Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-03-28 Thread l0f4r0
s not ready yet)? If so, I'll simply wait for it. I just wanted to make sure my conf is OK (and obviously it wasn't configured in such a way to get the latest kernel versions from backports)... Thanks in advance. Best regards, l0f4r0

Cannot see update to recent linux kernel 5.10.19-1~bpo10+1 (from 5.10.13-1~bpo10+1)

2021-03-21 Thread l0f4r0
irrors simply not up to date yet (5 days old)? Thanks in advance :) Best regards, l0f4r0

Re: Allow only selected USB

2021-02-09 Thread l0f4r0
Hi, 9 févr. 2021, 19:44 de mailingl...@darac.org.uk: > Certainly. > https://www.kernel.org/doc/html/latest/usb/authorization.html > + https://usbguard.github.io based on it. Best regards, l0f4r0

Re: problem with wget -O

2021-01-26 Thread l0f4r0
Hi, 26 janv. 2021 à 10:44 de to...@tuxteam.de: > And thank Greg (I hope I'm not mis-assigning) for mentioning > /etc/wgetrc and .wgetrc! > Let's not forget Darac Marjal who was the first (by a few minutes) actually ;) Best regards, l0f4r0

Re: Some questions around needrestart utility

2021-01-17 Thread l0f4r0
Otherwise you would get nothing as unattended-upgrades is not interactive... As a single user with only interactive upgrades, I'm not sure needrestart-session is useful to me right now. needrestart is probably enough. Thanks l0f4r0

Re: Some questions around needrestart utility

2021-01-17 Thread l0f4r0
anagers > like "lightdm" in there to prevent you from sawing off the branch you > are sitting on. > Ok, I didn't get this is the meaning of "override". Clear now, thanks. Best regards, l0f4r0

Some questions around needrestart utility

2021-01-17 Thread l0f4r0
, l0f4r0

Re: Debian and Android

2021-01-17 Thread l0f4r0
Hi, I don't know for your exact error message but I can say personally that I have no real issue anymore since I switched to Android File Transfer For Linux... https://github.com/whoozle/android-file-transfer-linux You might give it a try. NB: I'm on Buster. HTH Best regards, l0f4r0

Re: SanDisk USB stick problem

2020-12-08 Thread l0f4r0
Hi, If you don't have any real and valuable data on your usb stick, you should probably format it. See https://forum.mxlinux.org/viewtopic.php?t=46930 for example. Best regards, l0f4r0

Re: doing this does not make touchpad work

2020-12-04 Thread l0f4r0
via your favorite file manager and drag&drop it to your answer for automatic attachment. Regarding /etc/X11/xorg.conf.d/40-libinput.conf, you can do the same but as this file is very light, you can just type the following command and paste the result in your email: cat /etc/X11/xorg.conf.d/40-libinput.conf Best regards, l0f4r0

Re: doing this does not make touchpad work

2020-12-02 Thread l0f4r0
i  xserver-xorg-input-wacom                          0.34.99.1-1             >             amd64        X.Org X server -- Wacom input driver > Same here except the size of file 40-libinput.conf... Just to be sure, can you please provide us with its content? > kaye@laptop:~$ l0f4r0 > bash: l0f4r0: command not

Re: doing this does not make touchpad work

2020-12-01 Thread l0f4r0
gt; > It did not work. I guess it's to be expected since I'm using Debian 10 and > not 9? > > Any workaround? > What are the following outputs please? ls -l /etc/X11/xorg.conf.d/40-libinput.conf dpkg -l | grep -i xserver-xorg-input l0f4r0

Re: cups: Empty Basic password

2020-11-19 Thread l0f4r0
ug=667995 There is also another potential solution at  https://ubuntuforums.org/archive/index.php/t-2055965.html but I'm not sure it's recommended... Best regards, l0f4r0

Re: Information about security

2020-11-04 Thread l0f4r0
ll include appropriate CVEs. > + https://security-tracker.debian.org/tracker/source-package/apache2 Best regards, l0f4r0

Re: OpenSSl encrpt and decrypt a String

2020-10-16 Thread l0f4r0
adding-oracles-and-the-decline-of-cbc-mode-ciphersuites/ * https://robertheaton.com/2013/07/29/padding-oracle-attack/ Best regards, l0f4r0

Re: Stretch => Buster: AppArmor

2020-10-16 Thread l0f4r0
the following: sudo systemctl stop apparmor (=> stop the service now) sudo systemctl disable apparmor (=> prevent the service to be started at next reboot) Best regards, l0f4r0

Re: chromium users https question

2020-10-15 Thread l0f4r0
Hi, 15 oct. 2020 à 18:26 de ghesk...@shentel.net: > But I've not been able to click on an "https" link and have it work. > Where is your link? I mean is it a link on a webpage or is it inside a text editor for example? Can you share a working link and a bad one? Best regards, l0f4r0

Re: [SOLVED] Re: VirtualBox - vboxpci

2020-09-20 Thread l0f4r0
posed to get errors when I would launch one VM because of my unsigned modules supposedly? In the end, are my modules signed (hexdump tells me they are) or unsigned (see journalctl)? Maybe I didn't sign the appropriate ones? Thanks in advance :) Best regards, l0f4r0

Re: xfce4 widget problem

2020-09-13 Thread l0f4r0
Hi, Same issue from my side. A bug report is already ongoing with XFCE [1]. There seems to be some API issues according to Debian BTS [2]. Best regards, l0f4r0 [1] https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin/-/issues/27 [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925561

Re: Journal

2020-09-04 Thread l0f4r0
lly recommend. But if you are already familiar with vi(m), then it's a way to stay simple/light/straight to the point. [1] More details on https://raw.githubusercontent.com/vimwiki/vimwiki/master/doc/vimwiki.txt Best regards, l0f4r0

Re: Does Debian have a "nag" tool?

2020-08-15 Thread l0f4r0
Hi, 15 août 2020 à 14:24 de charlescur...@charlescurley.com: > XFCE's Orage. > For the specific purpose of birthdays, I find gbirthday really straightforward and effective. I haven't succeeded in showing the last recent birthdays though... Best regards, l0f4r0

Re: how to install cherrytree?

2020-07-14 Thread l0f4r0
--if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo If it doesn't work, restart the system (https://flatpak.org/setup/Debian/). Best regards, l0f4r0

Re: No "type=APPARMOR_ALLOWED/DENIED" logs

2020-07-07 Thread l0f4r0
ode" > Thanks for having checked that. Unfortunately, filling /sys/module/apparmor/parameters/audit with "noquiet" or "all" doesn't change anything about my logs (even after restarting apparmor.service)... I will probably post a message on AppArmor ML and tell you should I get the final answer :) Best regards, l0f4r0

Re: debsecan does not report a vulnerability?

2020-07-07 Thread l0f4r0
..otherwise you won't get so many upgrades available ;) Why not just counting results of: apt list --upgradable or apt list --upgradeable ? NB: Personally, I prefer apticron :) Best regards, l0f4r0

Re: /etc/default/grub doesn't exist, what to do?

2020-07-07 Thread l0f4r0
Hi, Please tell us the output of: dpkg -l | grep -i grub Best regards, l0f4r0

Re: iwlwifi

2020-07-06 Thread l0f4r0
-networking.html>> >> ) and firmware-iwlwifi. But both of these packages only have the microcode >> for up to version 48. >> More recent iwlwifi microcodes are available directly through: https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/linux-firmware.git/tree/ HIHBest regards, l0f4r0

Re: No "type=APPARMOR_ALLOWED/DENIED" logs

2020-07-06 Thread l0f4r0
t of my profiles are already in enforce mode * aa-genprof is supposed to create a new profile, set it into complain mode, adapt the profile thanks to AppArmor logs and decisions from the sysadmin and finally enforce the profile. In other words, I should have logs already... Best regards, l0f4r0

No "type=APPARMOR_ALLOWED/DENIED" logs

2020-07-05 Thread l0f4r0
e only AppArmor related logs I have are some apparmor="STATUS" regarding operation="profile_load" for the most part... * apparmor.service is running and everything is OK with aa-status Thanks in advance :) Best regards, l0f4r0

Re: Package management

2020-07-03 Thread l0f4r0
alized Linux distribution instead (AV Linux, UbuntuStudio, LibreELEC...). See  https://distrowatch.com/search.php?ostype=Linux&category=Multimedia&origin=All&basedon=All¬basedon=None&desktop=All&architecture=All&package=All&rolling=All&isosize=All&netinstall=All&language=All&defaultinit=All&status=Active#simple Best regards, l0f4r0

Re: inconsistent messages

2020-07-02 Thread l0f4r0
Conf chromium (83.0.4103.116-1~deb10u1 Debian-Security:10/stable [amd64]) Conf chromium-sandbox (83.0.4103.116-1~deb10u1 Debian-Security:10/stable [amd64]) Best regards, l0f4r0

Re: inconsistent messages

2020-07-02 Thread l0f4r0
http://security.debian.org/ buster/updates main contrib non-free ? Maybe there is a conflict between each other? What is your output for: apt policy chromium ? It could be a pinning issue as well... Best regards, l0f4r0

Re: Systemd user environment variables not picked up for me

2020-06-29 Thread l0f4r0
ables like the following: HOME=/home/@{PAM_USER} Or use @{HOME} directly since PAM 1.2.0. Source:  https://unix.stackexchange.com/questions/258246/why-does-pam-environment-not-include-home-in-my-new-path Best regards, l0f4r0

Re: Systemd user environment variables not picked up for me

2020-06-29 Thread l0f4r0
Hi, I'm not sure to understand what you want to achieve exactly, but aren't you supposed to use pam_env for setting/unsetting your environment variables? Best regards, l0f4r0

Re: WINE vs Virtual Machine for Windows app on Buster

2020-06-27 Thread l0f4r0
ue on a VM as most (all?) Windows softwares can run under a virtual environment (the only counter-examples I'm aware of are some malwares that detect they are running inside a VM so they can adapt their behavior)... l0f4r0

Re: WINE vs Virtual Machine for Windows app on Buster

2020-06-27 Thread l0f4r0
. Here is a good start regarding Wine compatibility:   https://appdb.winehq.org/objectManager.php?sClass=application&sTitle=Browse Applications&sOrderBy=appName&bAscending=true Best regards, l0f4r0

Re: On Subject drift [was: How long will this take?]

2020-06-27 Thread l0f4r0
qs/smart-questions.html#bespecific that has been recommended multiple times on this list). > As to why they merit different treatment -- I don't know. I don't > think so. Human behaviour is messy, more so in big groups. > I think this is definitely the real reason ;) Best regards, l0f4r0

Re: [debian-reference manual] bullet point sign and its content misplaced

2020-06-23 Thread l0f4r0
Hi, 23 juin 2020 à 13:43 de finn02+deb...@disroot.org: > Yes, but I can reproduce this behavior on fresh "new profile" of > Firefox. Can you reproduce this on Firefox? > Confirmed on FF indeed! Best regards, l0f4r0

Re: [debian-reference manual] bullet point sign and its content misplaced

2020-06-23 Thread l0f4r0
my side. You see an empty bullet point with its related text just below? Have you tried different web browsers? Do you have specific browser addons installed? Anyway, if there is a real issue, debian-...@lists.debian.org will certainly be more appropriate ;) Best regards, l0f4r0

Re: Syntax regarding "Exec" instruction in .desktop files

2020-06-22 Thread l0f4r0
them with a \ but as the argument needs quoting, the extra \ itself must be prefixed by a leading \ so a litteral $ becomes \\$, a \ becomes , & becomes \\& and so on... Am I correct please? Thanks a lot! Best regards, l0f4r0 16 juin 2020 à 07:07 de david...@freevolt.org: &g

Re: Default vim colorscheme?

2020-06-22 Thread l0f4r0
a light terminal * "ron" in a dark one Try those. Best regards, l0f4r0

Re: What is the best practice for a firewall for Debian Buster: iptables or nftables?

2020-06-20 Thread l0f4r0
th nftables but you have firewalld instead that works with both I've been told. Or you can use nftables directly... Best regards, l0f4r0

Re: CLI interface to packages.debian.org

2020-06-20 Thread l0f4r0
rches. There would be too many side-effects regarding the maintainability of your system. Or maybe inside an isolated environment otherwise...? Best regards, l0f4r0

Re: bash-completion pros/cons (was: Re: Need commands)

2020-06-18 Thread l0f4r0
t;> Interesting/intriguing point of view. >> > I will remember this polite new way to call somebody a weirdo. > Don't get me wrong, I just meant that your previous answer aroused my curiosity. So I wanted to look deeper into it because maybe *I* was the weirdo after all ;p Thanks & Best regards, l0f4r0

Re: [OT] Regular DKIM issues on this ML (was: Re: why !oh why Debian and application list)

2020-06-16 Thread l0f4r0
equence of it please? > These little things might help clarify your reports of the distorting > effects of a medium, when those reports are subject to the same > potential distortion. > Yes, it's not always easy to communicate efficiently & clearly by email ;) Best regards, l0f4r0

Re: bash-completion pros/cons (was: Re: Need commands)

2020-06-16 Thread l0f4r0
es completion is not working as it should, nothing is perfect, but globally I think that it saves time more than its wastes. It's probably more a conceptual/philosophical approach here ;) Best regards, l0f4r0

Re: [OT] Regular DKIM issues on this ML (was: Re: why !oh why Debian and application list)

2020-06-16 Thread l0f4r0
;> >> Let's see. >> >> >> >> >From what I saw this should fail DKIM test. >> >> >> >> And, for the good measure: >> >> >> >> >From: this is not a valid RFC-822 header >> >> >> > >&g

bash-completion pros/cons (was: Re: Need commands)

2020-06-16 Thread l0f4r0
Hi, 16 juin 2020 à 10:47 de david...@freevolt.org: > I hear some people find bash-completion helpful. Personally, though, > no. Do not want. > Interesting/intriguing point of view. Why would someone not be interested in autocompletion please?  Best regards, l0f4r0

Re: [OT] Regular DKIM issues on this ML (was: Re: why !oh why Debian and application list)

2020-06-15 Thread l0f4r0
n subsequently read by the mail software, the leading > is erroneously removed. The mboxrd format solves this by converting From  to >From  and converting >From  to >>From , etc. The transformation is then always reversible." l0f4r0

  1   2   >