Re: F32 bind9 split dns debug

2020-11-12 Thread Jack Craig
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> * dig @localhost linuxlighthouse.com  ns; <<>>
> DiG 9.11.23-RedHat-9.11.23-1.fc32 <<>> @localhost linuxlighthouse.com
>  ns; (2 servers found);; global options: +cmd;;
> Got answer:;; ->>HEADER<<- opcode: QUERY, status: REFUSED, id: 51501;;
> flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1;; WARNING:
> recursion requested but not available;; OPT PSEUDOSECTION:; EDNS: version:
> 0, flags:; udp: 4096; COOKIE:
> 74be01146439c484a96a23005fae34ab54bfd3a7b353f4eb (good);; QUESTION
> SECTION:;linuxlighthouse.com . IN NS;; Query
> time: 0 msec;; SERVER: ::1#53(::1);; WHEN: Thu Nov 12 23:24:27 PST 2020;;
> MSG SIZE  rcvd: 76*
>
>

allow-query chg to any, but no joy.
doesnt appear to help,...



>
>
> Dit bericht kan informatie bevatten die niet voor u is bestemd. Indien u
> niet de geadresseerde bent of dit bericht abusievelijk aan u is
> toegezonden, wordt u verzocht dat aan de afzender te melden en het bericht
> te verwijderen. De Staat aanvaardt geen aansprakelijkheid voor schade, van
> welke aard ook, die verband houdt met risico's verbonden aan het
> elektronisch verzenden van berichten.
>
> This message may contain information that is not intended for you. If you
> are not the addressee or if this message was sent to you by mistake, you
> are requested to inform the sender and delete the message. The State
> accepts no liability for damage of any kind resulting from the risks
> inherent in the electronic transmission of messages.
> ___
> 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
>
___
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


Re: F32 bind9 split dns debug

2020-11-12 Thread J.Witvliet--- via users

The allow-query { internals; } might be something worth tinkering

From: "Jack Craig" 
mailto:jack.craig.ap...@gmail.com>>
Date: Friday, 13 November 2020 at 08:03:43
To: "Community support for Fedora users" 
mailto:users@lists.fedoraproject.org>>
Subject: F32 bind9 split dns debug



hi all,
any dns pros in the house??

i am trying to debug a split view dns.
i am using F32 & bind9 where i have internal & external views.

internal network 10.0.0.0/24, external 
108.220.213.120/29

what i think i am seeing is a refusal of query, but Why??

where can i find a query_log print-severity definition?

dig shows, ...

dig ws.linuxlighthouse.com ns

; <<>> DiG 9.11.23-RedHat-9.11.23-1.fc32 <<>> 
ws.linuxlighthouse.com ns
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 45484
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;ws.linuxlighthouse.com. IN NS

;; Query time: 355 msec
;; SERVER: 10.0.0.1#53(10.0.0.1)
;; WHEN: Thu Nov 12 22:53:45 PST 2020
;; MSG SIZE  rcvd: 51

dig 108.220.213.121

; <<>> DiG 9.11.23-RedHat-9.11.23-1.fc32 <<>> 108.220.213.121
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 46338
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;108.220.213.121. IN A

;; ANSWER SECTION:
108.220.213.121. 0 IN A 108.220.213.121

;; Query time: 1 msec
;; SERVER: 10.0.0.1#53(10.0.0.1)
;; WHEN: Thu Nov 12 22:54:52 PST 2020
;; MSG SIZE  rcvd: 60

suggestions?

tia, jackc...


my named.conf

/* top of file */

acl slaves {
108.220.213.122;
};

acl internals {
10.0.0.0/24;
127.0.0.0/8;
};

/*
108.220.213.120/29;
*/

options
{
// Put files that named is allowed to write in the data/ directory:
directory "/var/named"; // "Working" directory
dump-file "data/cache_dump.db";
statistics-file "data/named_stats.txt";
memstatistics-file "data/named_mem_stats.txt";
secroots-file "data/named.secroots";
recursing-file "data/named.recursing";

listen-on port 53 { localhost; };
listen-on-v6 port 53 { any; };

allow-query  { internals;  };
allow-query-cache { any; };
allow-transfer{ 108.220.213.120/29; };

recursion yes;

forwarders {
8.8.8.8;
8.8.4.4;
};

/* DNSSEC related options. See information about keys ("Trusted keys", bellow) 
*/

/* Enable serving of DNSSEC related data - enable on both authoritative
and recursive servers DNSSEC aware servers */
dnssec-enable yes;

/* Enable DNSSEC validation on recursive servers */
dnssec-validation yes;

/* In Fedora we use /run/named instead of default /var/run/named
  so we have to configure paths properly. */
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";

managed-keys-directory "/var/named/dynamic";

/* In Fedora we use system-wide Crypto Policy */
/* https://fedoraproject.org/wiki/Changes/CryptoPolicy */
include "/etc/crypto-policies/back-ends/bind.config";

/* use querylog all the time rndc */
querylog yes;
};

logging {
channel default_file {
file "/var/log/named/default.log" versions 3 size 5m;
severity dynamic;
print-time yes;
print-category yes;
print-severity yes;
};
default.log:12-Nov-2020 22:16:58.021 query-errors: info: client @0x7f99e01bab90 
60.215.138.163#62853 (ws.linuxlighthouse.com): 
view external-wan-view: query failed (REFUSED) for 
ws.linuxlighthouse.com/IN/ at 
../../../bin/named/query.c:7270
default.log:12-Nov-2020 22:16:58.503 query-errors: info: client @0x7f99e01bab90 
60.215.138.163#48181 (ws.linuxlighthouse.com): 
view external-wan-view: query failed (REFUSED) for 
ws.linuxlighthouse.com/IN/A at 
../../../bin/named/query.c:7270
default.log:12-Nov-2020 22:16:59.036 query-errors: info: client @0x7f99e01bab90 
60.215.138.163#52399 (ws.linuxlighthouse.com): 
view external-wan-view: query failed (REFUSED) for 
ws.linuxlighthouse.com/IN/A at 
../../../bin/named/query.c:7270

channel security_file {
severity debug 2;
file "/var/log/named/security.log" versions 3 size 5m;
print-time yes;
print-category yes;
print-severity yes;
};
security.log:12-Nov-2020 22:16:58.021 client @0x7f99e01bab90 
60.215.138.163#62853 (ws.linuxlighthouse.com): 
view 

F32 bind9 split dns debug

2020-11-12 Thread Jack Craig
hi all,
any dns pros in the house??

i am trying to debug a split view dns.
i am using F32 & bind9 where i have internal & external views.

internal network 10.0.0.0/24, external 108.220.213.120/29

what i think i am seeing is a refusal of query, but Why??

where can i find a query_log print-severity definition?

dig shows, ...

dig ws.linuxlighthouse.com ns

; <<>> DiG 9.11.23-RedHat-9.11.23-1.fc32 <<>> ws.linuxlighthouse.com ns
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 45484
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;ws.linuxlighthouse.com. IN NS

;; Query time: 355 msec
;; SERVER: 10.0.0.1#53(10.0.0.1)
;; WHEN: Thu Nov 12 22:53:45 PST 2020
;; MSG SIZE  rcvd: 51

dig 108.220.213.121

; <<>> DiG 9.11.23-RedHat-9.11.23-1.fc32 <<>> 108.220.213.121
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 46338
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;108.220.213.121. IN A

;; ANSWER SECTION:
108.220.213.121. 0 IN A 108.220.213.121

;; Query time: 1 msec
;; SERVER: 10.0.0.1#53(10.0.0.1)
;; WHEN: Thu Nov 12 22:54:52 PST 2020
;; MSG SIZE  rcvd: 60

suggestions?

tia, jackc...


my named.conf

/* top of file */

acl slaves {
108.220.213.122;
};

acl internals {
10.0.0.0/24;
127.0.0.0/8;
};

/*
108.220.213.120/29;
*/

options
{
// Put files that named is allowed to write in the data/ directory:
directory "/var/named"; // "Working" directory
dump-file "data/cache_dump.db";
statistics-file "data/named_stats.txt";
memstatistics-file "data/named_mem_stats.txt";
secroots-file "data/named.secroots";
recursing-file "data/named.recursing";

listen-on port 53 { localhost; };
listen-on-v6 port 53 { any; };

allow-query  { internals;  };
allow-query-cache { any; };
allow-transfer{ 108.220.213.120/29; };

recursion yes;

forwarders {
8.8.8.8;
8.8.4.4;
};

/* DNSSEC related options. See information about keys ("Trusted keys",
bellow) */

/* Enable serving of DNSSEC related data - enable on both authoritative
and recursive servers DNSSEC aware servers */
dnssec-enable yes;

/* Enable DNSSEC validation on recursive servers */
dnssec-validation yes;

/* In Fedora we use /run/named instead of default /var/run/named
  so we have to configure paths properly. */
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";

managed-keys-directory "/var/named/dynamic";

/* In Fedora we use system-wide Crypto Policy */
/* https://fedoraproject.org/wiki/Changes/CryptoPolicy */
include "/etc/crypto-policies/back-ends/bind.config";

/* use querylog all the time rndc */
querylog yes;
};

logging {
channel default_file {
file "/var/log/named/default.log" versions 3 size 5m;
severity dynamic;
print-time yes;
print-category yes;
print-severity yes;
};
default.log:12-Nov-2020 22:16:58.021 query-errors: info: client
@0x7f99e01bab90 60.215.138.163#62853 (ws.linuxlighthouse.com): view
external-wan-view: query failed (REFUSED) for ws.linuxlighthouse.com/IN/
at ../../../bin/named/query.c:7270
default.log:12-Nov-2020 22:16:58.503 query-errors: info: client
@0x7f99e01bab90 60.215.138.163#48181 (ws.linuxlighthouse.com): view
external-wan-view: query failed (REFUSED) for ws.linuxlighthouse.com/IN/A
at ../../../bin/named/query.c:7270
default.log:12-Nov-2020 22:16:59.036 query-errors: info: client
@0x7f99e01bab90 60.215.138.163#52399 (ws.linuxlighthouse.com): view
external-wan-view: query failed (REFUSED) for ws.linuxlighthouse.com/IN/A
at ../../../bin/named/query.c:7270

channel security_file {
severity debug 2;
file "/var/log/named/security.log" versions 3 size 5m;
print-time yes;
print-category yes;
print-severity yes;
};
security.log:12-Nov-2020 22:16:58.021 client @0x7f99e01bab90
60.215.138.163#62853 (ws.linuxlighthouse.com): view external-wan-view:
query 'ws.linuxlighthouse.com//IN' denied
security.log:12-Nov-2020 22:16:58.503 client @0x7f99e01bab90
60.215.138.163#48181 (ws.linuxlighthouse.com): view external-wan-view:
query 'ws.linuxlighthouse.com/A/IN' denied
security.log:12-Nov-2020 22:16:59.036 client @0x7f99e01bab90
60.215.138.163#52399 (ws.linuxlighthouse.com): view external-wan-view:
query 'ws.linuxlighthouse.com/A/IN' denied

channel queries_file {
file "/var/log/named/queries.log" versions 3 size 5m;
severity debug 3;
print-time yes;
print-category yes;
print-severity yes;
};
queries.log:12-Nov-2020 22:16:58.021 queries: info: client @0x7f99e01bab90
60.215.138.163#62853 (ws.linuxlighthouse.com): view external-wan-view:
query: 

Re: Swap still not activated on later kernels

2020-11-12 Thread Samuel Sieb

On 11/12/20 10:42 PM, Sreyan Chakravarty wrote:



On Thu, Nov 12, 2020 at 11:45 AM Samuel Sieb > wrote:


Is there an error message?
What is the line in your /etc/fstab?
What happens if you do "swapon /path/to/your/swapfile"?


No idea why this is happening though:

swapon /fedora.swap
swapon: /fedora.swap: swapon failed: Invalid argument


What do "ls -lh /fedora.swap", "du -h /fedora.swap", and "blkid 
/fedora.swap" show?

Didn't you have a similar problem a while ago or was that someone else?
There was some kernel change that might require you to recreate the swap 
file.

___
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


Re: Need help with rsync

2020-11-12 Thread Samuel Sieb

On 11/12/20 8:36 PM, ToddAndMargo via users wrote:

So it was the bad link.

But the question still arises, why did the command stop
pruning after it found the bad link?  It still updated.


It's being safe.  If something went wrong in the copying, it can't be 
sure that it will delete the right files.  There are many options you 
could use though.  "--delete-before" might have done it, 
"--ignore-errors" definitely would.

___
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


Re: Swap still not activated on later kernels

2020-11-12 Thread Sreyan Chakravarty
On Thu, Nov 12, 2020 at 11:45 AM Samuel Sieb  wrote:

> What is the line in your /etc/fstab?
>

My /etc/fstab has the following:

/dev/mapper/vgfedora-fedora /   ext4
 defaults,x-systemd.device-timeout=0 1 1
UUID=4d112d8e-080d-44f2-8962-9c13f20a7885 /boot   ext4
 defaults1 2
UUID=041A-E511  /boot/efi   vfat
 defaults,uid=0,gid=0,umask=077,shortname=winnt 0 2
/fedora.swap none swap sw 0 0

-- 
Regards,
Sreyan Chakravarty
___
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


Re: Swap still not activated on later kernels

2020-11-12 Thread Sreyan Chakravarty
On Thu, Nov 12, 2020 at 11:45 AM Samuel Sieb  wrote:


> Is there an error message?
> What is the line in your /etc/fstab?
> What happens if you do "swapon /path/to/your/swapfile"?
>

No idea why this is happening though:

swapon /fedora.swap
swapon: /fedora.swap: swapon failed: Invalid argument


I am getting the following error message during boot

$ journalctl -b 0

Nov 13 11:55:46 localhost.HPNotebook systemd[1]: Activating swap
/fedora.swap...
Nov 13 11:56:01 localhost.HPNotebook swapon[1018]: swapon: /fedora.swap:
swapon failed: Invalid argument
Nov 13 11:55:46 localhost.HPNotebook systemd[1]: fedora.swap.swap: Swap
process exited, code=exited, status=255/EXCEPTION
Nov 13 11:55:46 localhost.HPNotebook systemd[1]: fedora.swap.swap: Failed
with result 'exit-code'.
Nov 13 11:55:46 localhost.HPNotebook systemd[1]: Failed to activate swap
/fedora.swap.
Nov 13 11:56:01 localhost.HPNotebook swapon[1104]: swapon: /fedora.swap:
swapon failed: Invalid argument
Nov 13 11:56:00 localhost.HPNotebook systemd[1]: Activating swap
/fedora.swap...
Nov 13 11:56:01 localhost.HPNotebook systemd[1]: fedora.swap.swap: Swap
process exited, code=exited, status=255/EXCEPTION
Nov 13 11:56:01 localhost.HPNotebook systemd[1]: fedora.swap.swap: Failed
with result 'exit-code'.
Nov 13 11:56:01 localhost.HPNotebook systemd[1]: Failed to activate swap
/fedora.swap.
Nov 13 11:56:02 localhost.HPNotebook systemd[1]: Activating swap
/fedora.swap...
Nov 13 11:56:02 localhost.HPNotebook swapon[1122]: swapon: /fedora.swap:
swapon failed: Invalid argument
Nov 13 11:56:02 localhost.HPNotebook systemd[1]: fedora.swap.swap: Swap
process exited, code=exited, status=255/EXCEPTION
Nov 13 11:56:02 localhost.HPNotebook systemd[1]: fedora.swap.swap: Failed
with result 'exit-code'.
Nov 13 11:56:02 localhost.HPNotebook systemd[1]: Failed to activate swap
/fedora.swap.


I can confirm that swap does not work as :

$ free

  totalusedfree  shared  buff/cache
available
Mem:8041504 1887468 4029028  321996 2125008
5525636
Swap: 0   0   0

Free gives 0 swap, and my hibernate option is disabled.


-- 
Regards,
Sreyan Chakravarty
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Samuel Sieb

On 11/12/20 7:52 PM, Tim via users wrote:

On Thu, 2020-11-12 at 13:42 +, Patrick O'Callaghan wrote:

There's an Android app call Droidcam (non-free) which has a Linux
download. Might be worth checking out.


I never got anywhere trying that out.  Dunno if it simply doesn't work,
or secure boot made it impossible to load the module.


You would either have to disable secure boot or add the signing key to 
the system store.

___
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


Re: rsync and weird characters, Invalid argument (22)

2020-11-12 Thread ToddAndMargo via users

On 2020-11-12 21:01, Eyal Lebedinsky wrote:

On 13/11/2020 14.06, ToddAndMargo via users wrote:

Hi All,

How do I get rsync to recognize weird characters that
my file system is okay with?

Many thanks,
-T


rsync --recursive --verbose --delete --delete-excluded 
--modify-window=5 --times --inplace --copy-links  
/home/CDs/Keepers   /mnt/MyCDs/.


sending incremental file list
Keepers/Linux/core.dumps.txt
Keepers/Linux/Perl/Perl5/perl.->.txt
Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html
Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html
Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt
Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt
Keepers/Linux/Perl/Perl6/perl6.prefix:.txt
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.->.txt" failed: Invalid 
argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.prefix:.txt" failed: 
Invalid argument (22)

Keepers/Thunderbird/Th.??.txt
Keepers/Thunderbird/Th.�.space.issue.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Thunderbird/Th.??.txt" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Thunderbird/Th.\#303\#203\#302\#257\#303\#202\#302\#277\#303\#202\#302\#275.space.issue.txt" 
failed: Invalid argument (22)

Keepers/Windows/Batch/batch.||.&&.txt
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Windows/Batch/batch.||.&&.txt" failed: Invalid 
argument (22)


Is it possible that the target fs mounted on /mnt/MyCDs/ is the one not 
liking these names?


Hi Eyal,

You called it.  The File System is ntfs.  Thank you!

-T
___
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


Re: Need help with rsync

2020-11-12 Thread ToddAndMargo via users

On 2020-11-12 20:29, Cameron Simpson wrote:

I like -a for this.


--archive, -a  archive mode; equals -rlptgoD (no -H,-A,-X)

--recursive, -r
--links, -l
--perms, -p
--times, -t
--group, -g
--owner, -o
--devices --specials, -D


--
~~
Computers are like air conditioners.
They malfunction when you open windows
~~
___
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


Re: rsync and weird characters, Invalid argument (22)

2020-11-12 Thread Eyal Lebedinsky

On 13/11/2020 14.06, ToddAndMargo via users wrote:

Hi All,

How do I get rsync to recognize weird characters that
my file system is okay with?

Many thanks,
-T


rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  /home/CDs/Keepers   /mnt/MyCDs/.

sending incremental file list
Keepers/Linux/core.dumps.txt
Keepers/Linux/Perl/Perl5/perl.->.txt
Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html
Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html
Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt
Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt
Keepers/Linux/Perl/Perl6/perl6.prefix:.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.->.txt" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html" failed: Invalid 
argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt" failed: Invalid 
argument (22)
rsync: [receiver] open "/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt" 
failed: Invalid argument (22)
rsync: [receiver] open "/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.prefix:.txt" 
failed: Invalid argument (22)
Keepers/Thunderbird/Th.??.txt
Keepers/Thunderbird/Th.�.space.issue.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Thunderbird/Th.??.txt" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Thunderbird/Th.\#303\#203\#302\#257\#303\#202\#302\#277\#303\#202\#302\#275.space.issue.txt"
 failed: Invalid argument (22)
Keepers/Windows/Batch/batch.||.&&.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Windows/Batch/batch.||.&&.txt" 
failed: Invalid argument (22)

Is it possible that the target fs mounted on /mnt/MyCDs/ is the one not liking 
these names?

--
Eyal Lebedinsky (fed...@eyal.emu.id.au)
___
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


Re: rsync and weird characters, Invalid argument (22)

2020-11-12 Thread ToddAndMargo via users

On 2020-11-12 20:24, Cameron Simpson wrote:

On 12Nov2020 19:06, ToddAndMargo  wrote:

How do I get rsync to recognize weird characters that
my file system is okay with?

[...]

Keepers/Linux/Perl/Perl6/perl6.prefix:.txt
rsync: [receiver] open
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.->.txt" failed: Invalid
argument (22)
rsync: [receiver] open
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html" failed:
Invalid argument (22)

[...]

I don't think this is anything to do with characters. Looks like your
rsyncing to a CDROM. Is that even sane?

Cheers,
Cameron Simpson 


Hi Cameron,

It is rsync'ing to a flash drive.

rsync does not like : > :: .* @ ** <> { } << >>.  If I
change the names, it works.

-T
___
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


Re: Need help with rsync

2020-11-12 Thread ToddAndMargo via users

For some reason, my follow up is getting bounced.
If you want to see it, respond to this and I will
eMail it to you directly.
___
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


Re: Need help with rsync

2020-11-12 Thread ToddAndMargo via users

On 2020-11-12 18:07, Samuel Sieb wrote:

On 11/12/20 5:45 PM, ToddAndMargo via users wrote:

I am trying to use rsync to

1) copy new files on the source to the destination

2) remove all files on the destination that do not
    reside on the source

Problem: the extra files on the destination are
not being removed.

Options="--recursive --verbose --delete --delete-excluded 
--modify-window=5 --times --inplace --copy-links "


ExcludeLinux="--exclude='wine-*'"

Synchronize "${Options} ${ExcludeLinux} ${MyCDsSource}/Linux 
${MyCDsTarget}/."


That should work.
Is there any output indicating why it's not working?
What is an example file?




Source:
$ pwd
/home/CDs/Linux/Perl/6

$ ls
Perl6.WebSite.txt
rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
rakudo-pkg-Fedora30-2019.07.1-03.x86_64.rpm
RakudoPkgFedora31-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.10.02.x86_64.rpm
RakudoPkgFedora33-2020.10.02.x86_64.rpm


Destination:
$ pwd
/mnt/MyCDs/Linux/Perl/6

$ ls
Perl6.WebSite.txt
rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
rakudo-pkg-Fedora30-2019.03.1-03.x86_64.rpm
rakudo-pkg-Fedora30-2019.07.1-03.x86_64.rpm
rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm
rakudo-pkg-Fedora31-2019.11-01.x86_64.rpm
rakudo-pkg-Fedora31-2020.01-01.x86_64.rpm
RakudoPkgFedora31-2020.02.1.04.x86_64.rpm
RakudoPkgFedora31-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.02.1.07.x86_64.rpm
RakudoPkgFedora32-2020.05.1.x86_64.rpm
RakudoPkgFedora32-2020.05.x86_64.rpm
RakudoPkgFedora32-2020.06.x86_64.rpm
RakudoPkgFedora32-2020.07.02.x86_64.rpm
RakudoPkgFedora32-2020.07.x86_64.rpm
RakudoPkgFedora32-2020.08.2.x86_64.rpm
RakudoPkgFedora32-2020.09.x86_64.rpm
RakudoPkgFedora32-2020.10.02.x86_64.rpm
RakudoPkgFedora33-2020.10.02.x86_64.rpm


This is exiting after the call to Linux:

# UpdateMyCDs
Resetting permissions
Resetting ownerships

rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  --exclude='wine-*' /home/CDs/Linux 
/mnt/MyCDs/.

sending incremental file list
symlink has no referent: 
"/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd"

IO error encountered -- skipping file deletion

sent 31,338 bytes  received 210 bytes  63,096.00 bytes/sec
total size is 3,207,298,531  speedup is 101,664.08
rsync error: some files/attrs were not transferred (see previous errors) 
(code 23) at main.c(1330) [sender=3.2.3]

-


Does "IO error encountered -- skipping file deletion" just
skip the file or does it terminate the command completely?

The destination is being updated, just not pruned.


Here is somethign interesting:

ls -al /home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd
lrwxrwxrwx. 1 todd users 35 Nov 15  2019 
/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd -> 
virtio-win-0.1.171_servers__x86.vfd


"ls" does not sow the double dash showing in the link.

Trying it with the link corrected:
ls -al /home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd

lrwxrwxrwx. 1 todd users 35 Nov 15  2019 
/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd -> 
virtio-win-0.1.171_servers__x86.vfd


Oh and look-e-here:

# UpdateMyCDs
Resetting permissions
Resetting ownerships

rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  --exclude='wine-*' /home/CDs/Linux 
/mnt/MyCDs/.

sending incremental file list
Linux/KVM/virtio-win/RPM/
Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd
deleting 
Linux/PDFStudio.Master-Pdf-Editor/master-pdf-editor-5.4.38-qt5-all.amd64.tar.gz

deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.42-x86_64.rpm
deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.29-x86_64.rpm
deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.20-x86_64.rpm
deleting 
Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.09-qt5-all.x86_64.rpm
deleting 
Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.4.38-qt5.x86_64.rpm

deleting Linux/Perl/6/rakudo-pkg-Fedora31-2020.01-01.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora31-2019.11-01.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora30-2019.03.1-03.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.09.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.08.2.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.07.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.07.02.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.06.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.05.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.05.1.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.02.1.07.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.02.1.05.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora31-2020.02.1.04.x86_64.rpm

sent 

Re: Need help with rsync

2020-11-12 Thread Cameron Simpson
On 12Nov2020 18:55, ToddAndMargo  wrote:
>On 2020-11-12 18:07, Samuel Sieb wrote:
>>On 11/12/20 5:45 PM, ToddAndMargo via users wrote:
>>>I am trying to use rsync to
>>>1) copy new files on the source to the destination

I like -a for this.

>>>2) remove all files on the destination that do not
>>>    reside on the source

--delete

>>>Problem: the extra files on the destination are
>>>not being removed.
>>>
>>>Options="--recursive --verbose --delete --delete-excluded 
>>>--modify-window=5 --times --inplace --copy-links "

Looks ok. Why --inplace? rsync has a nice make-temp-file-then-rename 
default behaviour which means the target file is the old file or the new 
file and never some partial chimera of the two.

[...]
># UpdateMyCDs
>Resetting permissions
>Resetting ownerships
>
>rsync --recursive --verbose --delete --delete-excluded 
>--modify-window=5 --times --inplace --copy-links  --exclude='wine-*' 
>/home/CDs/Linux /mnt/MyCDs/.

_Is_ there something odd mounted are /mnt/MyCDs or below? As opposed to 
plain old Linux filesystems?

>sending incremental file list
>symlink has no referent: 
>"/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd"
>IO error encountered -- skipping file deletion

What if you leave our --copy-links? I suspect a symlink pointing at 
something which doesn't exist.

From the manual:

   ‐‐copy‐links, ‐L transform symlink into referent file/dir

I imagine this involves repointing an absolute symlink to an absolute 
but adjusted symlink at the far end. Maybe what it refers to would not 
exist, causing trouble for the adjustment. I've never tried this option.  
Leave it out and see if it is the source of the problem.

>Does "IO error encountered -- skipping file deletion" just
>skip the file or does it terminate the command completely?

It omited the --delete phase because there was other trouble.

Cheers,
Cameron Simpson 
___
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


Re: rsync and weird characters, Invalid argument (22)

2020-11-12 Thread Cameron Simpson
On 12Nov2020 19:06, ToddAndMargo  wrote:
>How do I get rsync to recognize weird characters that
>my file system is okay with?
[...]
>Keepers/Linux/Perl/Perl6/perl6.prefix:.txt
>rsync: [receiver] open 
>"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.->.txt" failed: Invalid 
>argument (22)
>rsync: [receiver] open 
>"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html" failed: 
>Invalid argument (22)
[...]

I don't think this is anything to do with characters. Looks like your 
rsyncing to a CDROM. Is that even sane?

Cheers,
Cameron Simpson 
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Tim via users
On Thu, 2020-11-12 at 13:42 +, Patrick O'Callaghan wrote:
> There's an Android app call Droidcam (non-free) which has a Linux
> download. Might be worth checking out.

I never got anywhere trying that out.  Dunno if it simply doesn't work,
or secure boot made it impossible to load the module.
 
-- 
 
uname -rsvp
Linux 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 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


rsync and weird characters, Invalid argument (22)

2020-11-12 Thread ToddAndMargo via users

Hi All,

How do I get rsync to recognize weird characters that
my file system is okay with?

Many thanks,
-T


rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  /home/CDs/Keepers   /mnt/MyCDs/.


sending incremental file list
Keepers/Linux/core.dumps.txt
Keepers/Linux/Perl/Perl5/perl.->.txt
Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html
Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html
Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt
Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt
Keepers/Linux/Perl/Perl6/perl6.prefix:.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.->.txt" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.HTTP::Response.html" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl5/perl.Net::Nslookup.host.html" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.*@.**@.slurp.txt" failed: 
Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.<>{}<<>>.txt" failed: Invalid 
argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Linux/Perl/Perl6/perl6.prefix:.txt" failed: Invalid 
argument (22)

Keepers/Thunderbird/Th.??.txt
Keepers/Thunderbird/Th.�.space.issue.txt
rsync: [receiver] open "/mnt/MyCDs/Keepers/Thunderbird/Th.??.txt" 
failed: Invalid argument (22)
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Thunderbird/Th.\#303\#203\#302\#257\#303\#202\#302\#277\#303\#202\#302\#275.space.issue.txt" 
failed: Invalid argument (22)

Keepers/Windows/Batch/batch.||.&&.txt
rsync: [receiver] open 
"/mnt/MyCDs/Keepers/Windows/Batch/batch.||.&&.txt" failed: Invalid 
argument (22)

___
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


Re: Need help with rsync

2020-11-12 Thread ToddAndMargo via users

On 2020-11-12 18:07, Samuel Sieb wrote:

On 11/12/20 5:45 PM, ToddAndMargo via users wrote:

I am trying to use rsync to

1) copy new files on the source to the destination

2) remove all files on the destination that do not
    reside on the source

Problem: the extra files on the destination are
not being removed.

Options="--recursive --verbose --delete --delete-excluded 
--modify-window=5 --times --inplace --copy-links "


ExcludeLinux="--exclude='wine-*'"

Synchronize "${Options} ${ExcludeLinux} ${MyCDsSource}/Linux 
${MyCDsTarget}/."


That should work.
Is there any output indicating why it's not working?
What is an example file?




Source:
$ pwd
/home/CDs/Linux/Perl/6

$ ls
Perl6.WebSite.txt
rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
rakudo-pkg-Fedora30-2019.07.1-03.x86_64.rpm
RakudoPkgFedora31-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.10.02.x86_64.rpm
RakudoPkgFedora33-2020.10.02.x86_64.rpm


Destination:
$ pwd
/mnt/MyCDs/Linux/Perl/6

$ ls
Perl6.WebSite.txt
rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
rakudo-pkg-Fedora30-2019.03.1-03.x86_64.rpm
rakudo-pkg-Fedora30-2019.07.1-03.x86_64.rpm
rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm
rakudo-pkg-Fedora31-2019.11-01.x86_64.rpm
rakudo-pkg-Fedora31-2020.01-01.x86_64.rpm
RakudoPkgFedora31-2020.02.1.04.x86_64.rpm
RakudoPkgFedora31-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.02.1.05.x86_64.rpm
RakudoPkgFedora32-2020.02.1.07.x86_64.rpm
RakudoPkgFedora32-2020.05.1.x86_64.rpm
RakudoPkgFedora32-2020.05.x86_64.rpm
RakudoPkgFedora32-2020.06.x86_64.rpm
RakudoPkgFedora32-2020.07.02.x86_64.rpm
RakudoPkgFedora32-2020.07.x86_64.rpm
RakudoPkgFedora32-2020.08.2.x86_64.rpm
RakudoPkgFedora32-2020.09.x86_64.rpm
RakudoPkgFedora32-2020.10.02.x86_64.rpm
RakudoPkgFedora33-2020.10.02.x86_64.rpm


This is exiting after the call to Linux:

# UpdateMyCDs
Resetting permissions
Resetting ownerships

rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  --exclude='wine-*' /home/CDs/Linux 
/mnt/MyCDs/.

sending incremental file list
symlink has no referent: 
"/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd"

IO error encountered -- skipping file deletion

sent 31,338 bytes  received 210 bytes  63,096.00 bytes/sec
total size is 3,207,298,531  speedup is 101,664.08
rsync error: some files/attrs were not transferred (see previous errors) 
(code 23) at main.c(1330) [sender=3.2.3]

-


Does "IO error encountered -- skipping file deletion" just
skip the file or does it terminate the command completely?

The destination is being updated, just not pruned.


Here is somethign interesting:

ls -al /home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd
lrwxrwxrwx. 1 todd users 35 Nov 15  2019 
/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd -> 
virtio-win-0.1.171_servers__x86.vfd


"ls" does not sow the double dash showing in the link.

Trying it with the link corrected:
ls -al /home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd

lrwxrwxrwx. 1 todd users 35 Nov 15  2019 
/home/CDs/Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd -> 
virtio-win-0.1.171_servers__x86.vfd


Oh and look-e-here:

# UpdateMyCDs
Resetting permissions
Resetting ownerships

rsync --recursive --verbose --delete --delete-excluded --modify-window=5 
--times --inplace --copy-links  --exclude='wine-*' /home/CDs/Linux 
/mnt/MyCDs/.

sending incremental file list
Linux/KVM/virtio-win/RPM/
Linux/KVM/virtio-win/RPM/virtio-win_servers_x86.vfd
deleting 
Linux/PDFStudio.Master-Pdf-Editor/master-pdf-editor-5.4.38-qt5-all.amd64.tar.gz

deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.42-x86_64.rpm
deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.29-x86_64.rpm
deleting Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.20-x86_64.rpm
deleting 
Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.6.09-qt5-all.x86_64.rpm
deleting 
Linux/PDFStudio.Master-Pdf-Editor/MasterPDFEditor-5.4.38-qt5.x86_64.rpm

deleting Linux/Perl/6/rakudo-pkg-Fedora31-2020.01-01.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora31-2019.11-01.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora30-2019.03.1-03.x86_64.rpm
deleting Linux/Perl/6/rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.09.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.08.2.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.07.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.07.02.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.06.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.05.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.05.1.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.02.1.07.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora32-2020.02.1.05.x86_64.rpm
deleting Linux/Perl/6/RakudoPkgFedora31-2020.02.1.04.x86_64.rpm

sent 

Re: Need help with rsync

2020-11-12 Thread Samuel Sieb

On 11/12/20 5:45 PM, ToddAndMargo via users wrote:

I am trying to use rsync to

1) copy new files on the source to the destination

2) remove all files on the destination that do not
    reside on the source

Problem: the extra files on the destination are
not being removed.

Options="--recursive --verbose --delete --delete-excluded 
--modify-window=5 --times --inplace --copy-links "


ExcludeLinux="--exclude='wine-*'"

Synchronize "${Options} ${ExcludeLinux} ${MyCDsSource}/Linux 
${MyCDsTarget}/."


That should work.
Is there any output indicating why it's not working?
What is an example file?
___
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


Need help with rsync

2020-11-12 Thread ToddAndMargo via users

Hi All,

I am trying to use rsync to

1) copy new files on the source to the destination

2) remove all files on the destination that do not
   reside on the source

Problem: the extra files on the destination are
not being removed.


This is bash code:

Synchronize () {
   # $1 rsync command
   local Cmd="rsync ${1}"
   echo "${Cmd}"
   sync; sync
   eval "${Cmd}"
   sync; sync
   echo "-"; echo ""
}


Options="--recursive --verbose --delete --delete-excluded 
--modify-window=5 --times --inplace --copy-links "


ExcludeLinux="--exclude='wine-*'"

Synchronize "${Options} ${ExcludeLinux} ${MyCDsSource}/Linux 
${MyCDsTarget}/."


Synchronize "${Options} ${MyCDsSource}/WindowsInternet ${MyCDsTarget}/."

... [eleven more]


What am I missing?

Many thanks,
-T
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Patrick O'Callaghan
On Thu, 2020-11-12 at 14:27 +0100, Roberto Ragusa wrote:
> On 2020-11-12 13:42, George N. White III wrote:
> > On Thu, 12 Nov 2020 at 07:58, Patrick O'Callaghan  > > wrote:
> > 
> > I've seen several articles about using your smartphone as a webcam.
> > Some of them even mention Linux.
> > 
> > 
> > I run Zoom on an old Nexus smartphone (no SIM).  The phone has a decent
> > camera and mike, and gives more flexibility for the location than my desktop
> > but has to be plugged in to the charger.
> But that is unfeasible if you have to share your screen or do a presentation.

OK. I haven't looked at it closely.

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


Re: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists)...

2020-11-12 Thread Tom Horsley
On Thu, 12 Nov 2020 09:08:55 -0500
Neal Becker wrote:

> Should I care?

I've been getting those for a while and ignoring them.
I figure if something stops working right, I might
remember that I saw them and investigate :-).

Nothing has stopped working yet.
___
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


Re: coredump problems

2020-11-12 Thread Tom Horsley
On Thu, 12 Nov 2020 08:54:22 -0500
Neal Becker wrote:

> Any ideas?

A standard fedora install these days does all sorts
of stuff to intercept core files (which is an incredible
pain in the butt when you want to get an actual core file
for debugging).

Check the contents of /proc/sys/kernel/core_pattern
(and other core_* files in that directory)

You can permanently override this by sticking
this line in /etc/sysctl.conf:

kernel.core_pattern = core

Of course there is also the ulimit setting. Regardless of
all the /proc/sys stuff, you won't get a core file
unless you run the program after setting

ulimit -c unlimited
___
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


Re: coredump problems

2020-11-12 Thread Neal Becker
Here's a 2nd example:

Nov 12 09:09:50 nbecker2 kernel: thg[1464078]: segfault at 10 ip
7fed76a1382c sp 7ffddd982ed0 error 4 in
libpython3.9.so.1.0[7fed76977000+1a9000]
Nov 12 09:09:50 nbecker2 kernel: Code: f6 ff eb d6 66 2e 0f 1f 84 00 00 00
00 00 48 8b 15 19 35 20 00 41 54 48 b8 ef ff ff ff ff ff ff 7f 55 53 4c 8b
a2 38 02 00 00 <49> 8b 6c 24 10 48 39 c6 0f 87 68 a5 f6 ff 89 f9 48 8d 7e
10 85 c9
Nov 12 09:09:50 nbecker2 systemd-coredump[1464096]: Failed to send coredump
datagram: No buffer space available
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=590 op=LOAD
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=591 op=LOAD
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=592 op=LOAD
Nov 12 09:09:50 nbecker2 systemd[1]: Started Process Core Dump (PID
1464096/UID 0).
Nov 12 09:09:50 nbecker2 audit[1]: SERVICE_START pid=1 uid=0
auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
msg='unit=systemd-coredump@6-1464096-0 comm="systemd"
exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 12 09:09:50 nbecker2 audit[1464098]: NETFILTER_CFG table=filter
family=7 entries=0 op=register pid=1464098 subj=system_u:system_r:init_t:s0
comm="(coredump)"
Nov 12 09:09:50 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 16492, resource id: 119537670, major code:
15 (QueryTree), minor code: 0
Nov 12 09:09:50 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 16536, resource id: 119537712, major code:
15 (QueryTree), minor code: 0
Nov 12 09:09:50 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 16541, resource id: 119537712, major code:
18 (ChangeProperty), minor code: 0
Nov 12 09:09:50 nbecker2 systemd-coredump[1464098]: Coredump file
descriptor missing.
Nov 12 09:09:50 nbecker2 systemd[1]: systemd-coredump@6-1464096-0.service:
Succeeded.
Nov 12 09:09:50 nbecker2 audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295
ses=4294967295 subj=system_u:system_r:init_t:s0
msg='unit=systemd-coredump@6-1464096-0 comm="systemd"
exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 12 09:09:50 nbecker2 audit[1460520]: NETFILTER_CFG table=filter
family=7 entries=0 op=unregister pid=1460520
subj=system_u:system_r:kernel_t:s0 comm="kworker/u16:11"
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=592 op=UNLOAD
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=591 op=UNLOAD
Nov 12 09:09:50 nbecker2 audit: BPF prog-id=590 op=UNLOAD
Nov 12 09:09:50 nbecker2 abrt-dump-journal-core[1266]: Failed to obtain all
required information from journald
Nov 12 09:09:50 nbecker2 abrt-dump-journal-core[1266]: Failed to obtain all
required information from journald

On Thu, Nov 12, 2020 at 8:54 AM Neal Becker  wrote:

> I install the latest tortoisehg using pip --user.  It is segfaulting
> (coredumped).  However, there is no core.
> ulimit -c says unlimited.
> coredumpclt list
> does not  show it (should be python actually)
>
> /var/log/messages shows:
> Nov 12 08:47:53 nbecker2 systemd[1]: Started Process Core Dump (PID
> 1460045/UID 0).
> Nov 12 08:47:53 nbecker2 systemd-coredump[1460045]: Failed to send
> coredump datagram: No buffer space available
> Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
> error: 3 (BadWindow), sequence: 40052, resource id: 127926278, major code:
> 15 (QueryTree), minor code: 0
> Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
> error: 3 (BadWindow), sequence: 40097, resource id: 127926320, major code:
> 15 (QueryTree), minor code: 0
> Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
> error: 3 (BadWindow), sequence: 40102, resource id: 127926320, major code:
> 18 (ChangeProperty), minor code: 0
> Nov 12 08:47:53 nbecker2 systemd-coredump[1460046]: Coredump file
> descriptor missing.
> Nov 12 08:47:53 nbecker2 systemd[1]: systemd-coredump@5-1460045-0.service:
> Succeeded.
> Nov 12 08:47:53 nbecker2 audit[1]: SERVICE_STOP pid=1 uid=0
> auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
> msg='unit=systemd-coredump@5-1460045-0 comm="systemd"
> exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
>
>
> Any ideas?
> Thanks,
> Neal
> --
> *Those who don't understand recursion are doomed to repeat it*
>


-- 
*Those who don't understand recursion are doomed to repeat it*
___
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


Not setting net/ipv4/conf/all/rp_filter (explicit setting exists)...

2020-11-12 Thread Neal Becker
With today's updates I saw these messages:

Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Not setting net/ipv4/conf/default/accept_source_route (explicit setting
exists).
Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Not setting net/ipv4/conf/default/promote_secondaries (explicit setting
exists).

Should I care?

Thanks,
Neal
-- 
*Those who don't understand recursion are doomed to repeat it*
___
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


coredump problems

2020-11-12 Thread Neal Becker
I install the latest tortoisehg using pip --user.  It is segfaulting
(coredumped).  However, there is no core.
ulimit -c says unlimited.
coredumpclt list
does not  show it (should be python actually)

/var/log/messages shows:
Nov 12 08:47:53 nbecker2 systemd[1]: Started Process Core Dump (PID
1460045/UID 0).
Nov 12 08:47:53 nbecker2 systemd-coredump[1460045]: Failed to send coredump
datagram: No buffer space available
Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 40052, resource id: 127926278, major code:
15 (QueryTree), minor code: 0
Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 40097, resource id: 127926320, major code:
15 (QueryTree), minor code: 0
Nov 12 08:47:53 nbecker2 kwin_x11[1845]: qt.qpa.xcb: QXcbConnection: XCB
error: 3 (BadWindow), sequence: 40102, resource id: 127926320, major code:
18 (ChangeProperty), minor code: 0
Nov 12 08:47:53 nbecker2 systemd-coredump[1460046]: Coredump file
descriptor missing.
Nov 12 08:47:53 nbecker2 systemd[1]: systemd-coredump@5-1460045-0.service:
Succeeded.
Nov 12 08:47:53 nbecker2 audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295
ses=4294967295 subj=system_u:system_r:init_t:s0
msg='unit=systemd-coredump@5-1460045-0 comm="systemd"
exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'


Any ideas?
Thanks,
Neal
-- 
*Those who don't understand recursion are doomed to repeat it*
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Patrick O'Callaghan
On Thu, 2020-11-12 at 08:42 -0400, George N. White III wrote:
> On Thu, 12 Nov 2020 at 07:58, Patrick O'Callaghan 
> wrote:
> 
> > I've seen several articles about using your smartphone as a webcam.
> > Some of them even mention Linux.
> > 
> 
> I run Zoom on an old Nexus smartphone (no SIM).  The phone has a decent
> camera and mike, and gives more flexibility for the location than my
> desktop
> but has to be plugged in to the charger.
> 
> Using smartphones as webcams on Fedora requires building and installing
> a driver (which is why I have experience with MOK's for secure boot).  I
> got it
> working, but never bothered trying it with Zoom.

There's an Android app call Droidcam (non-free) which has a Linux
download. Might be worth checking out.

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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Roberto Ragusa

On 2020-11-12 13:42, George N. White III wrote:

On Thu, 12 Nov 2020 at 07:58, Patrick O'Callaghan mailto:pocallag...@gmail.com>> wrote:

I've seen several articles about using your smartphone as a webcam.
Some of them even mention Linux.


I run Zoom on an old Nexus smartphone (no SIM).  The phone has a decent
camera and mike, and gives more flexibility for the location than my desktop
but has to be plugged in to the charger.

But that is unfeasible if you have to share your screen or do a presentation.

Best regards.

--
   Roberto Ragusamail at robertoragusa.it
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread George N. White III
On Thu, 12 Nov 2020 at 07:58, Patrick O'Callaghan 
wrote:

> I've seen several articles about using your smartphone as a webcam.
> Some of them even mention Linux.
>

I run Zoom on an old Nexus smartphone (no SIM).  The phone has a decent
camera and mike, and gives more flexibility for the location than my
desktop
but has to be plugged in to the charger.

Using smartphones as webcams on Fedora requires building and installing
a driver (which is why I have experience with MOK's for secure boot).  I
got it
working, but never bothered trying it with Zoom.

-- 
George N. White III
___
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


Re: Fedora on a remote mac

2020-11-12 Thread George N. White III
On Wed, 11 Nov 2020 at 18:29, S Bob  wrote:

> Hi all;
>
> I have a Fedora 33 laptop. I also have a mac running OSX 10.15
>
> I want to run firefox on the mac but display it on the Fedora laptop.
>

Your options include X11, RDP (Microsoft Remote Desktop), and RFB (VNC).
There might be ways to use SPICE, but I have no experience with that.
At one time you could build Firefox and other GUI apps with X11 on macOS
(using, e.g., macports).

Do you plan to install Fedora on the Mac?   I have used the Oracle
VirtualBox
RDP, not sure if they have SPICE (https://www.virtualbox.org/ticket/13042
from
6 years ago).

If you can use Firefox in MacOS, Apple Remote Desktop uses RFB, but
not all RFB clients support Apple's choice of encryption.   It has been
nearly a year since I last used VNC with a Mac running El Capitan (10.11)
from a Windows 10 PC, using TigerVNC.Microsoft has RDP for macOS,
but it has been several years since I used it.   My use case was mostly
looking into problem reports for GUI apps running on macOS and
verifying that updates were working, so I was able to use a reduced color
model and could tolerate slow responses.


> Is there a way to do this with tunneling?
>

Yes.   I used ssh tunnels -- for the past several years have been working
remotely using a Cisco VPN.

-- 
George N. White III
___
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


Re: Recommendations for video-conferencing setup

2020-11-12 Thread Patrick O'Callaghan
On Wed, 2020-11-11 at 23:18 +0100, Roberto Ragusa wrote:
> On 2020-11-10 18:49, Patrick O'Callaghan wrote:
> > I occasionally participate in Zoom calls using my Android tablet, and
> > everything Just Works(tm). I'd like to do the same on my desktop with
> > Fedora, but despite testing three different cheap webcams the big issue
> > is always with the sound. I can hear the other people perfectly, and
> > the video is fine, but the audio from my side is muddy and nearly
> > impossible to understand. I've tried with and without headphones in
> > case it's a feedback issue (though not using the headphone mic). It
> > doesn't make any difference. Surely not all the webcam mics can be so
> > bad? How would anyone ever use them?
> Sound quality may be bad for many reasons. I see you have already done
> some investigation but let me list some trivial and not trivial hints:
> 
> - microphones are bad, especially laptop ones, often taking a lot of fan noise
> (a bit better if they are positioned on top of the screen, worse if they are
> near the keyboard)
> - check your sound level, it may be too low (noise) or too high and clipping
> (distorsion), use pavucontrol to see the vumeter; distorted voice is badly
> mangled by voice compression codecs
> - do not create feedback (use earphones), the software echo cancellation
> may mess everything up
> - if you use bluetooth, the earphone+mic mode (HSP/HFP) may sound quite
> bad, because of poor codecs (this may be related to "non free world"
> software choices, but it should affect playback more than recording)
> - if it happens on a specific software, it may be related to its codec choice
> 
> for some of these causes you can do tests by recording yourself and listening
> back.
> After a lot of experimentation I've bought a quite good external USB mic and
> of course my voice is a lot better than with the laptop (stereo!) mic.
> 
> Next (off) topic: how to send a good video.
> Webcams are generally very bad (mostly very noisy 720p).
> Smartphones have hugely better cameras (even on front), as soon as I'll
> find a bit of time I'm going to experiment on how to use an old
> smartphone as a webcam, there is a SmartCam kernel module
> that creates a v4l device that gets data from a phone.

Thanks. As I need something for a conference Right Now I've connected
two webcams. One has decent video, the other has not-terrible audio.
It's ridiculous but it works for the moment. When I have time I'll
explore other options.

I've seen several articles about using your smartphone as a webcam.
Some of them even mention Linux.

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


Re: python-enum34 for ceph

2020-11-12 Thread Ed Greshko

On 12/11/2020 17:59, Eyal Lebedinsky wrote:

True. I already tried this but the list was long and I did not want to spend 
the time wading
through it. Most of it was python3 modules. I will wait. 


I see.

Just for fun I ran "dnf install ceph" and the install (if allowed to continue) 
was 97 packages with
most of them being python3.  So, was installing a bunch that didn't have 
installed and wouldn't.
need them.

I'd expect a "remove" would only remove those python3 packages on which ceph 
depends on but
no other installed package does.

---
The key to getting good answers is to ask good questions.
___
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


Re: python-enum34 for ceph

2020-11-12 Thread Eyal Lebedinsky

On 12/11/2020 20.10, Ed Greshko wrote:

On 12/11/2020 16:40, Eyal Lebedinsky wrote:

On 12/11/2020 13.38, Samuel Sieb wrote:

On 11/11/20 5:52 PM, Eyal Lebedinsky wrote:

For a few weeks now I get this error for "dnf update"
 nothing provides python-enum34 needed by ceph-mgr-2:14.2.12-1.fc32.x86_64


I'm curious how that was even able to be built.  There is no python-enum34 in 
Fedora 32 at all.


On ceph.io I see that version 14.2.13 may have it resolved - is it in our 
pipeline?
In https://bodhi.fedoraproject.org/releases/F32
 I do not see a new ceph release or a python-enum34 package.


There are newer builds without that dependency.  If you want it right now, you 
can enable the updates-testing repo to get it.


Since I am not using ceph (AFAIK) I will wait for it to show up in f32.



Of course, if you're not using it you can always remove it.  When it gives you 
a list of what
will be removed you can check that list to make sure nothing is there that you 
know you
do use.


True. I already tried this but the list was long and I did not want to spend 
the time wading
through it. Most of it was python3 modules. I will wait.


---
The key to getting good answers is to ask good questions.


--
Eyal Lebedinsky (fed...@eyal.emu.id.au)
___
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


Re: python-enum34 for ceph

2020-11-12 Thread Ed Greshko

On 12/11/2020 16:40, Eyal Lebedinsky wrote:

On 12/11/2020 13.38, Samuel Sieb wrote:

On 11/11/20 5:52 PM, Eyal Lebedinsky wrote:

For a few weeks now I get this error for "dnf update"
 nothing provides python-enum34 needed by ceph-mgr-2:14.2.12-1.fc32.x86_64


I'm curious how that was even able to be built.  There is no python-enum34 in 
Fedora 32 at all.


On ceph.io I see that version 14.2.13 may have it resolved - is it in our 
pipeline?
In https://bodhi.fedoraproject.org/releases/F32
 I do not see a new ceph release or a python-enum34 package.


There are newer builds without that dependency.  If you want it right now, you 
can enable the updates-testing repo to get it.


Since I am not using ceph (AFAIK) I will wait for it to show up in f32.



Of course, if you're not using it you can always remove it.  When it gives you 
a list of what
will be removed you can check that list to make sure nothing is there that you 
know you
do use.

---
The key to getting good answers is to ask good questions.
___
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


Re: f32:: teamd process takes 100% cput - libteam bug, solved in 1.31

2020-11-12 Thread Ed Greshko

On 12/11/2020 16:14, Adrian Sevcenco wrote:

Sure, thanks a lot for your help!!!
But i have to report that after another update of the host and a reboot the 
problem was really solved ... i'm not sure but i think that even the kernel was 
updated so i rally cannot pin-point the exact solution...

Once again, thanks a lot! 


As long as it is fixed now.  :-) :-)
Welcome.

---
The key to getting good answers is to ask good questions.
___
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


Re: python-enum34 for ceph

2020-11-12 Thread Eyal Lebedinsky

On 12/11/2020 13.38, Samuel Sieb wrote:

On 11/11/20 5:52 PM, Eyal Lebedinsky wrote:

For a few weeks now I get this error for "dnf update"
 nothing provides python-enum34 needed by ceph-mgr-2:14.2.12-1.fc32.x86_64


I'm curious how that was even able to be built.  There is no python-enum34 in 
Fedora 32 at all.


On ceph.io I see that version 14.2.13 may have it resolved - is it in our 
pipeline?
In https://bodhi.fedoraproject.org/releases/F32
 I do not see a new ceph release or a python-enum34 package.


There are newer builds without that dependency.  If you want it right now, you 
can enable the updates-testing repo to get it.


Since I am not using ceph (AFAIK) I will wait for it to show up in f32.

--
Eyal Lebedinsky (fed...@eyal.emu.id.au)
___
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


Re: Run Firefox on a remote mac with display on my Linux laptop

2020-11-12 Thread Roberto Ragusa

On 2020-11-12 00:56, Jonathan Billings wrote:


You can turn on VNC and connect to the desktop remotely, but the apps are still 
displaying on the Mac.  You can also install Xorg and compile Firefox for X11, 
but it wouldn’t be the same Firefox you run locally on a Mac.


If the Mac is able to run containers, it should be possible to run a Fedora 
container on the Mac,
with firefox started there from your machine with "ssh -X container firefox".
Not simple but the same thing works on a smartphone, it should on a Mac too.

Best regards.

--
   Roberto Ragusamail at robertoragusa.it
___
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


Re: f32:: teamd process takes 100% cput - libteam bug, solved in 1.31

2020-11-12 Thread Adrian Sevcenco

On 11/12/20 2:33 AM, Ed Greshko wrote:

On 12/11/2020 07:46, Adrian Sevcenco wrote:

On 11/11/20 1:43 PM, Ed Greshko wrote:

On 11/11/2020 19:10, Adrian Sevcenco wrote:

On 11/11/20 10:22 AM, Adrian Sevcenco wrote:
Hi! I have a strange situation where my teamd process take 100% 
processor without having any kind of traffic (beside my ssh 
connection)


I thought that is a NM problem and i disabled the connectivity 
check of NM .. does anyone encountered this and have any idea of 
the problem?

so, i found what is going on:
https://bugzilla.redhat.com/show_bug.cgi?id=1874001

are there any plans to re-build/update the team packages?
i see that there is none in testing ...


A bit more.

The BZ you reference says
so, now it appeared in updates and after upgrade it seems that the bug 
is not solved, and after a fresh reboot i see this :


[root@vbox1 ~]# ps -C teamd -o pid,pcpu,pmem,cmd
    PID %CPU %MEM CMD
   1143 99.2  0.0 /usr/bin/teamd -o -n -U -D -N -t team0 -c {"runner": 
{"name": "loadbalance", "tx_hash": ["eth", "ipv4", "ipv6"]}}


[root@vbox1 ~]# uptime
 01:44:58 up 14 min,  1 user,  load average: 1.00, 0.98, 0.67

[root@vbox1 ~]# rpm -qa | grep libteam
libteam-1.31-2.fc32.x86_64

Any ideas about this?


Sorry, I don't.  I don't use teamd.  I was just assisting acquisition of 
the lib.


Suggest you add to that BZ that the problem still exists on Fedora 32 
with the version of the

lib installed.

Sure, thanks a lot for your help!!!
But i have to report that after another update of the host and a reboot 
the problem was really solved ... i'm not sure but i think that even the 
kernel was updated so i rally cannot pin-point the exact solution...


Once again, thanks a lot!
Adrian




smime.p7s
Description: S/MIME Cryptographic Signature
___
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