Re: resurrecting old laptops

2022-05-23 Thread Ron Yorston
jim wrote: >I would welcome other distro suggestions for tired old hardware I'm using CentOS 7 on an Asus Eee PC 701. RHEL 7 doesn't have an i686 version but CentOS supports it as an altarch. Advantages: - it has all that familiar Red Hat goodness; - unlike CentOS 8 it'll be supported until RH

Re: font tools (was "font longevity questions.").

2022-05-23 Thread Samuel Sieb
On 5/23/22 22:45, Tim via users wrote: On Mon, 2022-05-23 at 21:23 -0700, Samuel Sieb wrote: You're not seeing the whole name. If you click on them, you'll see they are different. Regular and 3 types of condensed. Terrible GUI design if it doesn't give you some indication that the name's bee

Re: resurrecting old laptops

2022-05-23 Thread Michal Schorm
Is there any webpage (or some kind of app or service) I could sign up to, stating which old HW I possess and would donate, should any such good cause need it ? I have a few bits. -- Michal Schorm Software Engineer Core Services - Databases Team Red Hat -- On Tue, May 24, 2022 at 5:58 AM Tim via

Re: merging unused partitions

2022-05-23 Thread Samuel Sieb
On 5/23/22 22:41, Tim via users wrote: On Mon, 2022-05-23 at 21:30 -0700, Samuel Sieb wrote: If they are unused, you don't need to use single-user mode. Just run fdisk on the cli or gparted or Gnome disks in the gui. Delete all the unused partitions and create a new one with the free space.

Re: font tools (was "font longevity questions.").

2022-05-23 Thread Tim via users
On Mon, 2022-05-23 at 21:23 -0700, Samuel Sieb wrote: > You're not seeing the whole name. If you click on them, you'll see > they are different. Regular and 3 types of condensed. Terrible GUI design if it doesn't give you some indication that the name's been truncated. Are users supposed to aro

Re: merging unused partitions

2022-05-23 Thread Tim via users
On Mon, 2022-05-23 at 21:30 -0700, Samuel Sieb wrote: > If they are unused, you don't need to use single-user mode. Just > run fdisk on the cli or gparted or Gnome disks in the gui. Delete > all the unused partitions and create a new one with the free space. Even though you're only modifying unu

Re: merging unused partitions

2022-05-23 Thread Samuel Sieb
On 5/22/22 15:02, Geoffrey Leach wrote: Courtsey of Anaconda, I have 4 contiguous unused partitions. I would like to merge them into a single partition. AFAIK this is the procedure I should follow. backup Boot to single-user use parted rm partitions 2 3 4 resizepart partition 1

Re: font tools (was "font longevity questions.").

2022-05-23 Thread Samuel Sieb
On 5/23/22 13:05, home user wrote: notice 4 fonts called "Noto Sans".  They are different from each other. Notice 4 fonts called "Noto Sans, Bold".  They are different from each other.  There are other examples.  This is only my opinion, but they should have different names.  Is the problem in

Re: font tools (was "font longevity questions.").

2022-05-23 Thread Tim via users
On Mon, 2022-05-23 at 14:05 -0600, home user wrote: > are some fonts actually on my work station twice? That can happen. Different things may provide those fonts. [tim@rocky ~]$ locate NimbusMonoPS-Bold /usr/share/fonts/urw-base35/NimbusMonoPS-Bold.afm /usr/share/fonts/urw-base35/NimbusMonoPS-Bo

Re: resurrecting old laptops

2022-05-23 Thread Tim via users
On Mon, 2022-05-23 at 19:50 -0300, George N. White III wrote: > Some of your old working systems may be irreplaceable antiques to > people still using old instruments. Even broken systems may be > valuable sources of spare parts. It may be worth checking for > listing of your models on for sale si

Re: fedora34 and php version

2022-05-23 Thread Samuel Sieb
On 5/23/22 18:45, Alex wrote: I've just upgraded from fedora33 to fedora34. I understand both are EOL already. I need at least php version 7.4.26, but it appears fedora34 only provides 7.4.16. The problem is that fedora35 includes php8, and I have several applications that don't yet fully sup

fedora34 and php version

2022-05-23 Thread Alex
Hi, I've just upgraded from fedora33 to fedora34. I understand both are EOL already. I need at least php version 7.4.26, but it appears fedora34 only provides 7.4.16. The problem is that fedora35 includes php8, and I have several applications that don't yet fully support php8. What are my options

Re: rpm erase or removal of rpms

2022-05-23 Thread Roger Heflin
Be careful with a "-y" on a dnf/yum remove. I have seen yum/dnf determine that a lot of packages need to go. The protected multi-lib/packages may stop a total disaster, but you could also remove a lot of packages you don't want to remove and have to go back through the list and reinstall a lot.

Re: rpm erase or removal of rpms

2022-05-23 Thread Bill Cunningham
On 5/23/2022 5:12 PM, Thomas Cameron wrote: Write your list so that all the packages are on a single line, and just add rpm -e to the head of that line: rpm -e foo bar baz Or: for i in `cat list`; do rpm -e $i     I see, thanks much Thomas, so this would then be kind of doing the work o

Re: rpm erase or removal of rpms

2022-05-23 Thread George N. White III
On Mon, May 23, 2022 at 6:27 PM Roger Heflin wrote: > rpm -e $(cat list) > > Even better: "dnf mark remove $(cat list) dnf mark remove ... Unmarks the specified packages as installed by user. Whenever you as a user don't need a specific pack‐ age you can mark it for

Re: resurrecting old laptops

2022-05-23 Thread George N. White III
On Mon, May 23, 2022 at 12:08 PM wrote: > > so Ive got some old i686 computers, > electronics recycle day approaches, but before I do that, > I thought Id try to get them working > > 1st one (toshiba satellite core2 laptop) threw a hard-drive, > clunking noises, then finally falls back to pxe-boo

I found the biggest improvement and the biggest disappointment in F36

2022-05-23 Thread Sam Varshavchik
It is that a Qemu VM with a 1280x960 display is now exactly one pixel row shorter, vertically, after adding up all of the window title bars and the panel on the XFCE desktop. It fits exactly on my 1920x1080 monitor. I no longer have to do a "Resize to VM" every time I start it, to get rid of

Re: rpm erase or removal of rpms

2022-05-23 Thread Bill Cunningham
On 5/23/2022 5:22 PM, Roger Heflin wrote: rpm -e $(cat list) On Mon, May 23, 2022 at 4:02 PM Bill Cunningham wrote:     I have been trying to use rpm or dnf to remove some rpms. Most the ones I am concerned with are docker related, and or to do with go (golang). You certainly ca

Re: Trying to kickstart a KVM guest on F36

2022-05-23 Thread Todd Zullinger
Tom Horsley wrote: > On Mon, 23 May 2022 15:54:28 -0500 > Thomas Cameron wrote: > >> No idea why that worked. > > I had bridges stop working because they disabled the code that > would copy the MAC address from the physical interface attached to > the bridge. Had to add a specific MAC address to

Re: rpm erase or removal of rpms

2022-05-23 Thread Todd Zullinger
Hi, Bill Cunningham wrote: > I have been trying to use rpm or dnf to remove some rpms. I'd use dnf. It provides a much wider safety net. You can do this with rpm as well, but it requires greater care. > Here is > an example of what I have been trying to do, ex: > >     list.txt, > > > gcc-d

Re: rpm erase or removal of rpms

2022-05-23 Thread Roger Heflin
rpm -e $(cat list) On Mon, May 23, 2022 at 4:02 PM Bill Cunningham wrote: > I have been trying to use rpm or dnf to remove some rpms. Most > the ones I am concerned with are docker related, and or to do with go > (golang). You certainly can't use wildcards with rpm erase. I have a > lis

Re: rpm erase or removal of rpms

2022-05-23 Thread Thomas Cameron
On 5/23/22 15:53, Bill Cunningham wrote: I have been trying to use rpm or dnf to remove some rpms. Most the ones I am concerned with are docker related, and or to do with go (golang). You certainly can't use wildcards with rpm erase. I have a list generated with the date these rpms were install

Re: Trying to kickstart a KVM guest on F36

2022-05-23 Thread Tom Horsley
On Mon, 23 May 2022 15:54:28 -0500 Thomas Cameron wrote: > No idea why that worked. I had bridges stop working because they disabled the code that would copy the MAC address from the physical interface attached to the bridge. Had to add a specific MAC address to the bridge definition (I forget h

Re: podman containers won't start after F36 upgrade

2022-05-23 Thread Daniel Walsh
On 5/22/22 03:09, Clemens Eisserer wrote: HI there, I've just recently upgraded from F35->F36 and now podman containers don't start anymore. When starting a container which was created with F35 as user, I just get: Error: OCI runtime error: unable to start container "0a4d835ccc0777ccf77bc619

Re: Trying to kickstart a KVM guest on F36

2022-05-23 Thread Thomas Cameron
On 5/22/22 22:54, Thomas Cameron wrote: I'm trying to kickstart a KVM guest. Historically, I could just start the guest connected to my bridged network interface, and my PXE server would hand out a DHCP address and then the tftp server would hand over the initrd.img and vmlinuz files. After upg

rpm erase or removal of rpms

2022-05-23 Thread Bill Cunningham
        I have been trying to use rpm or dnf to remove some rpms. Most the ones I am concerned with are docker related, and or to do with go (golang). You certainly can't use wildcards with rpm erase. I have a list generated with the date these rpms were installed, but I am not THAT good with C

font tools (was "font longevity questions.").

2022-05-23 Thread home user
(Fedora 35) In the original post of the "font longevity questions/", I said: > By the way, why do so many fonts show up twice > in the font selection tools? First, the only fonts I recall installing myself are the "Nimbus Roman No9 L" fonts. The tools are (in gnome) "Fonts" and "MATE Font Viewe

Re: resurrecting old laptops

2022-05-23 Thread Andras Simon
2022-05-23 16:59 UTC+02:00, jim.cro...@gmail.com : [...] > I have used fedora-live-usb to rescue machines > in the past, but Im running out of options. > I would welcome other distro suggestions for tired old hardware https://www.lxle.net works for me on a netbook from around 2008. __

Re: resurrecting old laptops

2022-05-23 Thread Alex
Don't know about the pavilion g7, but i checked at the archive for the F30 release (https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/30/Workstation/) and there is no i686 iso. Perhaps the archive is incomplete. There are i386 images in F25 though (https://archives.fedorapr

Re: resurrecting old laptops

2022-05-23 Thread José María Terry Jiménez
El 23/5/22 a las 16:59, jim.cro...@gmail.com escribió: so Ive got some old i686 computers, electronics recycle day approaches, but before I do that, I thought Id try to get them working 1st one (toshiba satellite core2 laptop) threw a hard-drive, clunking noises, then finally falls back to pxe-

resurrecting old laptops

2022-05-23 Thread jim . cromie
so Ive got some old i686 computers, electronics recycle day approaches, but before I do that, I thought Id try to get them working 1st one (toshiba satellite core2 laptop) threw a hard-drive, clunking noises, then finally falls back to pxe-boot. I put fedora-30-live on a usb (last one with i686 s

Re: Weird issue: Screen savers HAMMERING the CPU

2022-05-23 Thread Clemens Eisserer
Hi Thomas, In order to find out why the screensavers are so slow I would suggest running a system-wide profiler (like sysprof as root) while the slow screensaver is running. you'll be able to find the spot where all the cpu-cycles are wasted this way. - Clemens Am So., 22. Mai 2022 um 23:12 Uhr

Re: F37 Proposal: Strong crypto settings: phase 3, forewarning 1/2 (System-Wide Change proposal)

2022-05-23 Thread Ian Pilcher
On 5/23/22 08:49, Ian Pilcher wrote: Just FYI, I managed to bang out a proof of concept of a "wrapper" that runs a program with a different crypto policy.  I've successfully used it to connect to a TLSv1-only HTTP server with both Firefox and curl on a Fedora 36 system running the DEFAULT crypto

Re: F37 Proposal: Strong crypto settings: phase 3, forewarning 1/2 (System-Wide Change proposal)

2022-05-23 Thread Ian Pilcher
On 5/2/22 08:56, Ian Pilcher wrote: IMO, there's a rather desperate need to be able to override the system- wide policy for individual processes, maybe via some sort of wrapper around one of the containerization technologies. Just FYI, I managed to bang out a proof of concept of a "wrapper" tha