Re: What is wrong with my dnf exclude for wine?

2023-02-01 Thread Joe Zeff
On 02/01/2023 10:55 PM, ToddAndMargo via users wrote: # grep -i wine  /etc/dnf/dnf.conf excludepkgs=wine* excludepkgs=wine-* The second exclude should be redundant, as it's already covered by the first one. That doesn't explain what's going on, but I did want to mention it.

Re: What is wrong with my dnf exclude for wine?

2023-02-01 Thread ToddAndMargo via users
On 2/1/23 22:01, Jeffrey Walton wrote: On Thu, Feb 2, 2023 at 12:55 AM ToddAndMargo via users wrote: What is wrong with my wine dnf excludes? # grep -i wine /etc/dnf/dnf.conf excludepkgs=wine* excludepkgs=wine-* dnf still tried to upgrade wine And wine 8 IS EVEN WORSE THAN WINE 7

Re: What is wrong with my dnf exclude for wine?

2023-02-01 Thread Jeffrey Walton
On Thu, Feb 2, 2023 at 12:55 AM ToddAndMargo via users wrote: > > What is wrong with my wine dnf excludes? > > # grep -i wine /etc/dnf/dnf.conf > excludepkgs=wine* > excludepkgs=wine-* > > dnf still tried to upgrade wine > > > And wine 8 IS EVEN WORSE THAN WINE 7 > > Wine 8.0.1 cannot

What is wrong with my dnf exclude for wine?

2023-02-01 Thread ToddAndMargo via users
Hi All, What is wrong with my wine dnf excludes? # grep -i wine /etc/dnf/dnf.conf excludepkgs=wine* excludepkgs=wine-* dnf still tried to upgrade wine And wine 8 IS EVEN WORSE THAN WINE 7 Wine 8.0.1 cannot print to a local printer, but can to a network printer

Re: OT: create a booklet from a pdf

2023-02-01 Thread Samuel Sieb
On 2/1/23 13:25, olivares33561 via users wrote: I would like to ask for help creating a booklet from a pdf. I used to use psnup, psbook pdftops/pdf2ps and create a booklet from pdf and it worked. The secretaries at school helped me fix the booklet in order to print it and create a small

Re: tar

2023-02-01 Thread Samuel Sieb
On 2/1/23 11:24, Patrick Dupre wrote: To create a tar file, I used to create a list and to make tar -cvzf arch.tgz $list However, if there are file names with a space, this space is interpreted as file name separator. How can I fix this, either when I tar, or when I create the list? You

Re: tar

2023-02-01 Thread Felix Miata
Patrick Dupre composed on 2023-02-01 20:24 (UTC+0100): > To create a tar file, I used to create a list and to make > tar -cvzf arch.tgz $list > However, if there are file names with a space, this space is > interpreted as file name separator. > How can I fix this, > either when I tar, or when I

Re: VPN routing differences

2023-02-01 Thread Samuel Sieb
On 2/1/23 04:18, Tibor Attila Anca wrote: For a few services of my company I need VPN (openconnect). With the required packages network-manager (recent GNOME on updated Fedora 37) is able to establish the vpn connection, but it would not change routing in a proper way. Neither Firefox nor Edge

Re: tar

2023-02-01 Thread wwp
Hello Patrick, On Wed, 1 Feb 2023 20:24:22 +0100 Patrick Dupre wrote: > To create a tar file, I used to create a list and to make > tar -cvzf arch.tgz $list > > However, if there are file names with a space, this space is > interpreted as file name separator. > > How can I fix this, > either

Re: tar

2023-02-01 Thread ToddAndMargo via users
On 2/1/23 11:24, Patrick Dupre wrote: Hello, To create a tar file, I used to create a list and to make tar -cvzf arch.tgz $list However, if there are file names with a space, this space is interpreted as file name separator. How can I fix this, either when I tar, or when I create the list?

Re: sigil ebook editor?

2023-02-01 Thread Jerry James
On Wed, Feb 1, 2023 at 3:27 PM Tom Horsley wrote: > I've done a lot of that, but now I want to do things like > insert chapters and split files which requires a lot of getting > manifests and links to have the files they point at re-arranged > and it seems likely sigil could get it all right

Re: tar

2023-02-01 Thread Cameron Simpson
On 01Feb2023 20:24, Patrick Dupre wrote: To create a tar file, I used to create a list and to make tar -cvzf arch.tgz $list However, if there are file names with a space, this space is interpreted as file name separator. If you can match the files with a glob (shell pattern): tar cvzf

Re: tar

2023-02-01 Thread Cameron Simpson
On 01Feb2023 13:07, Jerry James wrote: If you can make your list with find, you can also do something like this: find [top directory] [find criteria here] -exec tar -cvzf arch.tgz {} + This recreates the tar file once per file, ending up with a tar file containing only the last file found.

Re: sigil ebook editor?

2023-02-01 Thread Tom Horsley
On Wed, 1 Feb 2023 23:17:12 +0100 Andras Simon wrote: > I don't know, but wouldn't you be better off editing it by hand, using > your favourite text editor? I've done a lot of that, but now I want to do things like insert chapters and split files which requires a lot of getting manifests and

Re: sigil ebook editor?

2023-02-01 Thread Andras Simon
2023-02-01 23:01 UTC+01:00, Tom Horsley : > Wanted to see if I could edit a slightly busted epub and found > that the version of sigil in the fedora repos is very old. > Any chance it will be updated soon? I don't know, but wouldn't you be better off editing it by hand, using your favourite text

sigil ebook editor?

2023-02-01 Thread Tom Horsley
Wanted to see if I could edit a slightly busted epub and found that the version of sigil in the fedora repos is very old. Any chance it will be updated soon? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to

OT: create a booklet from a pdf

2023-02-01 Thread olivares33561 via users
Dear kind fedora users, I would like to ask for help creating a booklet from a pdf. I used to use psnup, psbook pdftops/pdf2ps and create a booklet from pdf and it worked. The secretaries at school helped me fix the booklet in order to print it and create a small booklet with the ordering

Re: tar

2023-02-01 Thread Jerry James
On Wed, Feb 1, 2023 at 12:41 PM Go Canes wrote: > On Wed, Feb 1, 2023 at 2:24 PM Patrick Dupre wrote: > > To create a tar file, I used to create a list and to make > > tar -cvzf arch.tgz $list > > > > However, if there are file names with a space, this space is > > interpreted as file name

Re: tar

2023-02-01 Thread Go Canes
On Wed, Feb 1, 2023 at 2:24 PM Patrick Dupre wrote: > > Hello, > > To create a tar file, I used to create a list and to make > tar -cvzf arch.tgz $list > > However, if there are file names with a space, this space is > interpreted as file name separator. > > How can I fix this, > either when I

tar

2023-02-01 Thread Patrick Dupre
Hello, To create a tar file, I used to create a list and to make tar -cvzf arch.tgz $list However, if there are file names with a space, this space is interpreted as file name separator. How can I fix this, either when I tar, or when I create the list? Thank

Re: VPN routing differences

2023-02-01 Thread Barry Scott
> On 1 Feb 2023, at 12:18, Tibor Attila Anca wrote: > > Hi, > > Fedora 37 is amazing, thanks for the work! There is a small thing > however, that bothers me. > > For a few services of my company I need VPN (openconnect). With the > required packages network-manager (recent GNOME on updated

Re: Fedora 37: kernel: general protection fault, probably for non-canonical address PREEMPT SMP PT

2023-02-01 Thread Dario Lesca
I have try last kernel (6.1.8-200.fc37.x86_64) but none is changed. NFS still not working and crash the server. https://bugzilla.redhat.com/show_bug.cgi?id=2150630#c6 Thanks Dario Il giorno mer, 25/01/2023 alle 13.59 +0100, Dario Lesca ha scritto: > Il giorno ven, 20/01/2023 alle 11.46 -0700,

VPN routing differences

2023-02-01 Thread Tibor Attila Anca
Hi, Fedora 37 is amazing, thanks for the work! There is a small thing however, that bothers me. For a few services of my company I need VPN (openconnect). With the required packages network-manager (recent GNOME on updated Fedora 37) is able to establish the vpn connection, but it would not

Re: lxd on Fedora for virtual machine

2023-02-01 Thread Patrick O'Callaghan
On Wed, 2023-02-01 at 09:23 +0100, Peter Boy wrote: > LXD started once as a (new) management tool for LXC container (mostly > system containers in contrast to Docker). Later (I think with version > 4) they expanded to manage VMs as well. So, you might be able to > manage a virtual Windows instance

Re: lxd on Fedora for virtual machine

2023-02-01 Thread Patrick O'Callaghan
On Wed, 2023-02-01 at 00:01 -0500, Robert McBroom via users wrote: > On 1/31/23 06:06, Patrick O'Callaghan wrote: > > On Tue, 2023-01-31 at 00:00 -0500, Robert McBroom via users wrote: > > > I see discussions of container tech with lxd and docker on > > > ubuntu. > > > dnf > > > will install

Re: lxd on Fedora for virtual machine

2023-02-01 Thread Peter Boy
> Am 01.02.2023 um 06:01 schrieb Robert McBroom via users > : > > On 1/31/23 06:06, Patrick O'Callaghan wrote: >> On Tue, 2023-01-31 at 00:00 -0500, Robert McBroom via users wrote: >>> I see discussions of container tech with lxd and docker on ubuntu. >>> dnf >>> will install docker. Anyone