Re: Linux video camera UVC driver with multiple cameras

2022-03-22 Thread Roger Heflin
udev and a rule similar to this:
ENV{SUBSYSTEM}=="video4linux", ENV{ID_TYPE}=="video",
ENV{ID_SERIAL_SHORT}=="0582C6D0", SYMLINK+="video-ibm2", GROUP="video"
ENV{SUBSYSTEM}=="video4linux", ENV{ID_TYPE}=="video",
ENV{ID_SERIAL_SHORT}=="A6D77E9F", SYMLINK+="video-pr1", GROUP="video"
ENV{SUBSYSTEM}=="video4linux", ENV{ID_TYPE}=="video",
ENV{ID_SERIAL_SHORT}=="9EAC29D0", SYMLINK+="video-pr2", GROUP="video"

I don't know if that rule still works,I last used it 8 years ago.  But
something similar should still work.  And at least the logitech cams do
seem to have a serial number.

 udevadm info /dev/video0  will dump the info.  If you want to be avoid
udev, you could use the SN  from the info command and create another device
in /dev with the name you want and the same major/minor number (using the
mknod command) (major/minor is in the info command).  Say start at
/dev/video20 or something similar.

udev is the clean way to do it, but udev is more difficult to debug if it
does not work, and I have been burned by udev changing semantics enough to
do it the crude but easier to debug way.


On Tue, Mar 22, 2022 at 12:33 PM Steve Underwood 
wrote:

> Hi,
>
> The Linux UVC driver for USB video cameras names devices according to
> the product name it gets from the USB device itself. This is fine if you
> have different models of camera, as each gets a different name. However,
> if you have, say, 3 Logitech C920 cameras, the device list in video
> applications shows you have many devices called "HD Pro Webcam C920",
> and you can't tell which is which. I looked in the driver source code to
> see if there is a way to tag the cameras with unique names, but there
> doesn't seem to be. Does anyone know if I missed something?
>
> Regards,
>
> Steve
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
> Do not reply to spam on the list, report it:
> https://pagure.io/fedora-infrastructure
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Help configuring internal network

2022-03-22 Thread Bob Marcan
On Tue, 22 Mar 2022 00:34:55 -0600
Robin Laing  wrote:

> In my network, devices are assigned DHCP IP address according to their MAC 
> address.  My wireless access point uses mac filtering.
> 
> With DHCP being assigned via MAC address, then they get a static IP address 
> fixed to that device.  This helps with scripting for some things.  Something 
> to consider.
> 
> Robin
> 

Do not forget this randomization "security feature" :-)

# Place file in
# /etc/NetworkManager/conf.d/90-disable-randomization.conf
[device-mac-randomization]
wifi.scan-rand-mac-address=no
[connection-mac-randomization]
ethernet.cloned-mac-address=permanent
wifi.cloned-mac-address=permanent

BR, Bob



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Linux video camera UVC driver with multiple cameras

2022-03-22 Thread Steve Underwood

Hi,

The Linux UVC driver for USB video cameras names devices according to 
the product name it gets from the USB device itself. This is fine if you 
have different models of camera, as each gets a different name. However, 
if you have, say, 3 Logitech C920 cameras, the device list in video 
applications shows you have many devices called "HD Pro Webcam C920", 
and you can't tell which is which. I looked in the driver source code to 
see if there is a way to tag the cameras with unique names, but there 
doesn't seem to be. Does anyone know if I missed something?


Regards,

Steve
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Message during dnf update

2022-03-22 Thread Roger Heflin
The last Failed to write message is the only real error.   The other
messages are informational.The /etc/gshadow is basically trying to add
the group users and it already being in the file, which is informational.

The real error will be coming from one of the install scripts in one of the
rpms and that is what needs to be changed (bug report on the rpm giving
that error to correct the error).  And you don't know exactly what rpm is
doing it nor what file it is trying to write to.

On Tue, Mar 22, 2022 at 11:55 AM Robert McBroom via users <
users@lists.fedoraproject.org> wrote:

> The following message was sent to the terminal just before the verifying
> step on a dnf update.
>
> Creating group sgx with gid 106.
> Creating group users with gid 100.
> Creating group systemd-oom with gid 951.
> Creating user systemd-oom (systemd Userspace OOM Killer) with uid 951 and
> gid 951.
> /etc/gshadow: Group "users" already exists.
> Failed to write files: File exists
>
> No such entries are in /etc/group. /etc/gshadow has permissions of 000,
> with last update of may 20,2021. Do these setting need to be changed?
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
> Do not reply to spam on the list, report it:
> https://pagure.io/fedora-infrastructure
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Message during dnf update

2022-03-22 Thread Robert McBroom via users
The following message was sent to the terminal just before the verifying 
step on a dnf update.


Creating group sgx with gid 106.
Creating group users with gid 100.
Creating group systemd-oom with gid 951.
Creating user systemd-oom (systemd Userspace OOM Killer) with uid 951 
and gid 951.

/etc/gshadow: Group "users" already exists.
Failed to write files: File exists

No such entries are in /etc/group. /etc/gshadow has permissions of 000, 
with last update of may 20,2021. Do these setting need to be changed?
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: WiFi flakiness after recent upgrades

2022-03-22 Thread Chris Rouch
I went through the same process.

kernel-5.16.15-201.fc35.x86_64 causes the wifi to drop regularly
kernel-5.16.14-200.fc35.x86_64 works well.

This is with an Atheros wireless chip

Regards,

Chris



On Sun, 20 Mar 2022 at 18:44, Max Pyziur  wrote:

> On Sun, 20 Mar 2022, Tim Evans wrote:
>
> > On 3/20/22 10:50, Max Pyziur wrote:
> >>
> >> Greetings,
> >>
> >> I have an elderly Dell XPS 13 laptop (L321x); it seems that after a
> recent
> >> software upgrade, the Wifi has become intermittant. As a fallback, I
> have a
> >> USB ethernet connection to cabled switch that is delivering steadily.
> >>
> >> All other wifi devices (samsung phones, etc) are connected and
> operating
> >> correctly.
> >>
> >>
> >> Is anyone else having difficulties?
> >
> > I was just thinking about posting this, too.  Lenovo T530 with Intel
> > Corporation Centrino Ultimate-N 6300 (rev 3e)
> >
> > Wifi connects, then drops, then reconnects. Rinse and repeat.
>
> "I have a witness."
>
> I've rebooted to an earlier kernel (kernel-5.16.14-200.fc35.x86_64), and
> things seem to be stable, wifi-wise. On the newest kernel
> (kernel-5.16.15-201.fc35.x86_64) things would have become problematic w/in
> a few minutes.
>
> Am I doing this correctly, or are should other approaches be tried?
>
> Max
> p...@brama.com
>
>
> > ___
> > users mailing list -- users@lists.fedoraproject.org
> > To unsubscribe send an email to users-le...@lists.fedoraproject.org
> > Fedora Code of Conduct:
> > https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> > List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> > List Archives:
> >
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
> > Do not reply to spam on the list, report it:
> > https://pagure.io/fedora-infrastructure
> >
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
> Do not reply to spam on the list, report it:
> https://pagure.io/fedora-infrastructure
>


-- 
Met vriendelijke groet,

Chris Rouch
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Connecting Evolution to an Exchange 2010 server

2022-03-22 Thread Patrick O'Callaghan
On Tue, 2022-03-22 at 16:57 +1030, Tim via users wrote:
> On Mon, 2022-03-21 at 11:49 +, Patrick O'Callaghan wrote:
> > Aren't you using Fedora?
> 
> Yes, but not on the PC that I do most of my email on.  That one uses
> CentOS, and I'm trying Linux Mint on the laptop at the moment.  The
> current version of Fedora was diabolical on it, it was as slow as a
> dog
> (it is a very old laptop, so I'm not that surprised), and had a 1
> hertz
> flashing at the top of the screen unless I fiddled with a desktop
> rendering option every time I booted up.  Yet Mint was miles better
> on
> it.

I had Mint for a while on an ancient Asus EEE, but then Mint stopped
supporting 32-bits (though I think there's a Debian variant that still
has it). My current laptop is an Acer about 7 years old and has only
4GB of RAM, yet runs F35 quite well (I swapped the HDD for an old SSD
which made all the difference).

Anyway, this is getting OT.

poc
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Help configuring internal network

2022-03-22 Thread Tim via users
On Tue, 2022-03-22 at 00:34 -0600, Robin Laing wrote:
> In my network, devices are assigned DHCP IP address according to
> their MAC address.

Mine too, virtually all DHCP servers do (even if not providing fixed
static addresses, but just nearly always giving the same addresses),
that's always been the way DHCP associated clients with leases.

And there are some further client ID parameters that *can* be taken
into consideration.  You also need to remember that some clients
automatically randomise their MAC for so-called privacy (*) reasons,
that can make DHCP serving a bit of a headache.

* Random network addresses may anonymise you slightly, but your web-
browser is going to fingerprint you very badly.

> My wireless access point uses mac filtering.

That I don't bother with.  It can't stop cracking, they just listen and
clone MACs to find one that is allowed (there are no-skill-required
programs that can do that for malcontent people).  It's the same false
belief of hiding access point SSIDs.

And it makes life difficult when you have to manually authorise
everything that should be allowed to connect.  Not to mention the MAC
randomising shenanigans I just mentioned making it near impossible to
use your own network if you use MAC filtering.  It was an annoying
feature my phone added in one update that took me a while to find out
why its IP kept changing.

-- 
 
uname -rsvp
Linux 3.10.0-1160.59.1.el7.x86_64 #1 SMP Wed Feb 23 16:47:03 UTC 2022 x86_64
 
Boilerplate:  All unexpected mail to my mailbox is automatically deleted.
I will only get to see the messages that are posted to the mailing list.
 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Kinda OT: Email clients and Email Management

2022-03-22 Thread Tim via users
On Mon, 2022-03-21 at 14:55 -0700, Samuel Sieb wrote:
> Tim, you replied to this email previously.  What did Evolution do
> with it when you tried to reply?

Just confirming that you're referring to his email with message id: 
4cd89656f28227f26e2609705bc02285164f4ce2.ca...@cwm030.com
(though that may not be the ID that his system creates).

If I hit reply, the whole thing got quoted, including the list footer.

I notice it's not a text email:

Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64

I wonder if that fools evolution's replying?  Replying to most textual
messages (plain text or HTML) does trim off signatures as expected
(ones not from this list).  And so far, every base64 encoded message
that I've found with a signature doesn't get it trimmed of.

For what it's worth, I've found almost all messages from this list to
be base64 encoded (even when I can see no good reason why).  I managed
to find one or two that aren't, and their signatures don't get stripped
off, either.

In the past, when it came to list mail, and trying out various
different email clients, some only regard the last "dash dash space
carriage-return" signature separater on the page as the one to strip
off, others picked on the first one.  The clients that promote top
posting (and endless stacking of messages upon reply upon reply upon
reply) often don't strip signatures at all, nor have signature
separators in their own postings.

So, I'm just used to either selecting only the portion of an email I
want to reply to, or always hand-editing the message I reply to.  It's
been a very long time since I found Evolution has presented a blank
page when I tried to reply to someone's badly formatted message. 
Replying to HTML used to be a pain, you'd try to split someone's
stream-of-conciousness three-pages-as-one-paragraph posting into a real
paragraph, and it'd delete the whole block of text.  I'd have to copy
and paste into a real plain text editor, like vim, to remove all the
non-textual crapola, first.

-- 
 
uname -rsvp
Linux 3.10.0-1160.59.1.el7.x86_64 #1 SMP Wed Feb 23 16:47:03 UTC 2022 x86_64
 
Boilerplate:  All unexpected mail to my mailbox is automatically deleted.
I will only get to see the messages that are posted to the mailing list.
 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure