Re: Fedora PXE boot

2019-11-11 Thread Samuel Sieb

On 11/11/19 6:23 PM, Aaron Gray wrote:
On Mon, 11 Nov 2019 at 21:16, Samuel Sieb > wrote:

 > On 11/11/19 10:57 AM, Aaron Gray wrote:
 > > subnet 192.168.2.0 netmask 255.255.255.0 {
 > >     authoritative;
 > >
 > >    range 192.168.2.1 192.168.2.127;
 > >    option domain-name-servers 8.8.8.8, 8.8.4.4;
 > >    option routers 192.168.1.111;
 >
 > Your gateway address is not in this subnet.  That won't work.

Okay that may well be the issue ! I cannot access stuff off of the 
internet so that figures !


So that should be 192.168.2.1 or 192.168.2.254 ?


I would need to know how your network is configured.  Please explain.

192.168.1.111 is the gateway address of the router my DHCPD server 
machine is connected to.


That's a very unusual IP address for a gateway.

I tried using the this DHCPD server on Windows and it was fine and could 
access the internet for normal operation using the 192.168.1.111 address 
so thought I had a working configuration.


Again very strange.  What IP address was Windows getting?

How do I go about this will the DHCPD server pick up that gate way 
automattically use itself or do I have to do some further routing ??


Not sure what you're asking, but the gateway needs to be some network 
device on the same subnet that route the packets onward.



 > next-server 192.168.2.1;

Yes I was wondering about next-server ?


I'm really curious how it finds the tftp server without that...
___
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: sound bug on update with HDMI

2019-11-11 Thread stan via users
On Mon, 11 Nov 2019 19:44:39 -
Cătălin George Feștilă  wrote:

> alsa-info.sh
> http://alsa-project.org/db/?f=57ea2d275137a9b2de34641a84df5cd4c2f10c66
> 
> journalctl -b https://paste.centos.org/view/97ca9d38#L78

Neither of these are complete.  

The part of the journal dealing with sound device activation isn't
there.  When you do the journalctl -b, do a search (less commands) /snd
to find the part of the boot dealing with loading the sound card
drivers.

The alsa-info output confirms that alsa didn't load any modules, though
it found intel and nvidia devices.  Try redirecting the output into a txt
file that you can upload, e.g.
bash alsa-info.sh > alsainfo.txt
or edit and copy with Ctrl-A, Ctrl-C, and then paste using Ctrl-V.

I have no way to know why the modules for the cards failed, but the
suggesting by Colin to try an F31 kernel instead of an F30 kernel is a
good one.  It's possible there are compiler or key incompatibilities,
so the kernel refused to load the modules because they were improperly
signed.

The fact that you are booted into an F30 kernel also leads me to
question whether the upgrade to F31 succeeded.
___
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 PXE boot

2019-11-11 Thread Aaron Gray
On Mon, 11 Nov 2019 at 21:16, Samuel Sieb  wrote:
>
> On 11/11/19 10:57 AM, Aaron Gray wrote:
> > On Thu, 7 Nov 2019 at 03:53, Samuel Sieb  wrote:
> >> On 11/6/19 3:39 PM, Aaron Gray wrote:
> >>> Does anyone have PXE booting working ?
> >>
> >> Yes, for both legacy and EFI modes.
> >
> > Right I am only needing legacy
>
> > I have BOOTP and TFTP working but it seems to be failing on DNS and
> > HTTP or HTTPS.

Samuel,

I was trying to follow this howto :-


https://docs.fedoraproject.org/en-US/fedora/rawhide/install-guide/advanced/Network_based_Installations/

> You need to explain in more detail where the boot process is getting
> stuck.  Does the PXE BIOS get an IP address?  Does it load the file from
> the tftp server or does it fail there?

PXE BOOT is working fine, the TFTP is working and the kernel is loading.

But the initrd is unable to load the inst.stage2 http(s) loaders

~~~ pxelinux.cfg ~~~
default vesamenu.c32
prompt 1
timeout 600

label linux
menu label ^Install Fedora 30 64-bit
menu default
kernel f30/vmlinuz
append initrd=f30/initrd.img inst.stage2=
https://download.fedoraproject.org/pub/fedora/linux/releases/30/Server/x86_64/os/
ip=dhcp

label server30
menu label ^Install Fedora 30 ( Minimal Image )
menu default
kernel f30/vmlinuz
append initrd=f30/initrd.img inst.stage2=
https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/releases/30/Server/x86_64/os
ip=dhcp ks=https://example.com/fedora/kickstarts/minimal.ks

label server31
menu label ^Install Fedora 31
menu default
kernel f31/vmlinuz
append initrd=f31/initrd.img inst.stage2=
https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/releases/31/Server/x86_64/os

label local
menu label Boot from ^local drive
localboot 0x
~~~

> > Here's my dhcp.conf :-
> > ~~~
> > # dhcpd.conf
> >
> > # option definitions common to all supported networks...
> > option domain-name "aarongray.org";
> > option domain-name-servers ns1.hover.com, ns2.hover.com;
>
> This is incorrect, you have to put IP addresses.  You can't resolve the
> names without having a DNS server already. :-)

Oh okay I thought it would use the systems DNS to look up the addresses.

> > # No service will be given on this subnet, but declaring it helps the
> > # DHCP server to understand the network topology.
>
> I think that's a copy and paste comment that is invalid.

Okay that was from the default /etc/dhcp/dhcpd.conf file

> > subnet 192.168.2.0 netmask 255.255.255.0 {
> > authoritative;
> >
> >range 192.168.2.1 192.168.2.127;
> >option domain-name-servers 8.8.8.8, 8.8.4.4;
> >option routers 192.168.1.111;
>
> Your gateway address is not in this subnet.  That won't work.

Okay that may well be the issue ! I cannot access stuff off of the internet
so that figures !

So that should be 192.168.2.1 or 192.168.2.254 ?

192.168.1.111 is the gateway address of the router my DHCPD server machine
is connected to.

I tried using the this DHCPD server on Windows and it was fine and could
access the internet for normal operation using the 192.168.1.111 address so
thought I had a working configuration.

How do I go about this will the DHCPD server pick up that gate way
automattically use itself or do I have to do some further routing ??

> >option broadcast-address 192.168.2.255;
> > #  option ip-forwarding off;
> >default-lease-time 600;
> >max-lease-time 7200;
> >
> >option ntp-servers ntp.fedora.org;
> >
> >range dynamic-bootp 192.168.2.128 192.168.2.240;
> >ddns-update-style none;
> >filename "pxelinux.0";
> > }
>
> When you say tftp is working, do you mean the server is running or that
> the clients are getting the boot file?  You're missing the info telling
> the clients what tftp server to use.  You need a line like:

The machine is getting the bootfiles and menus from the TFTP server fine.

> next-server 192.168.2.1;

Yes I was wondering about next-server ?

>
> Do you have a "pxelinux.cfg" directory on the tftp server?  That would
> be the next step.

Thats working fine, I got menus and stuff its the second stage loader that
loads images/install.img from initrd.img which is where its failing !

Thanks for helping !

Aaron
___
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: Core for a netbook??

2019-11-11 Thread sixpack13
I guess the device could be this one:
https://www.linux-netbook.com/system76-starling-netbook/

2 GB !

P.S.
if I still were in the possession of my old netbook (given away cause reading 
glasses needed) I would check to get ClearLinux on it.

https://docs.01.org/clearlinux/latest/reference/system-requirements.html#system-requirements

But EFI, SSE4.x ???

a check tool:
https://docs.01.org/clearlinux/latest/get-started/compatibility-check.html#check-compatibility-steps

my old netbooking given away to african children:
https://www.labdoo.org/content/07466

maybe an option for you if you want to "retire" your netbook too ?


___
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: Firefox in wayland

2019-11-11 Thread Ed Greshko

On 11/12/19 7:03 AM, antonio montagnani wrote:
so, my Fedora 31 has been updated from Fedora 6 and the only package for firefox is firefox-70.0-1.fc31.x86_64 . Is it correct??? 


firefox-wayland-70.0-1.fc31 is available for F31.

FWIW, this package provides 2 files.

/usr/bin/firefox-wayland
/usr/share/applications/firefox-wayland.desktop

/usr/bin/firefox-wayland is a shell script, just like /usr/bin/firefox is.

Its only function is to set the environment variable MOZ_ENABLE_WAYLAND=1
and then exec /usr/bin/firefox.

--
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: sound bug on update with HDMI

2019-11-11 Thread Colin J Thomson
On Monday, 11 November 2019 19:44:39 GMT Cătălin George Feștilă wrote:
> alsa-info.sh
> http://alsa-project.org/db/?f=57ea2d275137a9b2de34641a84df5cd4c2f10c66
 
> journalctl -b https://paste.centos.org/view/97ca9d38#L78

OK, I just looked at the Alsa report and this could be your problem:-

Kernel release:5.2.9-200.fc30.x86_64

Update your kernel to 5.3.x for F31 and see if that helps.

Good Luck,

Colin
-- 
Fedora 31 (Thirty One)


___
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 31 will not shut down completely

2019-11-11 Thread Tom Horsley
On Mon, 11 Nov 2019 17:35:30 -0500
john.mel...@gmail.com wrote:

> It would appear that the problem is somehow related to booting an EFI
> partition.

Or something that got corrupted during the initial install. (But
I certainly have seen older machines where UEFI was very dodgy).
___
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: Firefox in wayland

2019-11-11 Thread antonio montagnani

Samuel Sieb ha scritto il 11/11/19 alle 22:21:

On 11/11/19 11:19 AM, Matthew Saltzman wrote:

On Mon, 2019-11-11 at 17:55 +0100, antonio montagnani wrote:

shall I moveto Firefox-wayland when I use wayland? if I switch to
Gnome
classic what happens??


IIRC, for GNOME, Wayland is the default and firefox-wayland is the
default. You can install and run firefox-x11 even when running Wayland,
but someone else might be able to say whether the reverse is true. For
other desktops, firefox-x11 is the default and if running Wayland, you
can install firefox-wayland.


firefox-wayland is not the default anywhere yet.  It is intended but 
there are still some issues to fix before that.

___
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
so, my Fedora 31 has been updated from Fedora 6 and the only package for 
firefox is firefox-70.0-1.fc31.x86_64 . Is it correct???


--
Antonio Montagnani
Linux Fedora 31 (Workstation)
Thunderbird 68
Fujitsu
___
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 31 will not shut down completely

2019-11-11 Thread sixpack13
one of interesting/left question to me is:
why it had been working with the same bios config. on F30 and stopped it on F31 
? 
___
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 31 will not shut down completely

2019-11-11 Thread john . mellor
On Sun, 2019-11-10 at 13:11 +0800, Ed Greshko wrote:
> On 11/10/19 12:56 PM, sixpack13 wrote:
> > okay, so we are both liars !
> > fine by me, "endowed" with that "competence" let's fix the OP pain
> > !
> > :-)
> > 
> > the priciest questions are (just to put AND remove in one step a
> > topic on my list):
> > - OP, do have multi-card readers in your box ?
> > - do you or does fedora do "magic" mapping with them ?
> > - are there still media's the that devices ?
> > - maybe, a install dvd, still in the drive, which could prevent
> > clean shutdown, somehow ?
> > ( last Q. is NOT meant as an attack ...!!!)
> 
> I really don't think any of that is relevant.
> 
> Note the log the OP supplied.
> 
> Nov 08 19:14:18 localhost.localdomain audit[1]: SERVICE_STOP pid=1
> uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
> msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd"
> hostname=? addr=? termina>
> Nov 08 19:14:18 localhost.localdomain systemd[1]: Stopped Monitoring
> of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
> Nov 08 19:14:18 localhost.localdomain systemd[1]: lvm2-
> monitor.service: Succeeded.
> Nov 08 19:14:18 localhost.localdomain lvm[14772]: 3 logical volume(s)
> in volume group "fedora_localhost-live" unmonitored
> Nov 08 19:14:18 localhost.localdomain lvm[14772]: /dev/sdf: open
> failed: No medium found
> 
> 
> The "Succeeded" and "Stopped Monitoring of LVM2" would indicate that
> this phase
> has completed.  And, the log does have "Reached target Final Step"
> 
> I feel Tom had the best suggestion at this point
> 
> "If you turn off rhgb and quiet on the kernel boot line,
> you can (usually) watch lots of messages on the console as
> it tries to shutdown"

Ok, some progress!  I reconfigured the BIOS boot settings to pick the
hard drive first, and not an EFI partition.  Then I reinstalled Fedora
31 from scratch, updated it and installed the additional packages that
I need, and restored home from backup.  The machine now shuts down
normally.

It would appear that the problem is somehow related to booting an EFI
partition.  This machine is a kickass 2011-vintage Gateway machine, so
it may have some kind of EFI shutdown bug.  I use it for my daily
driver because the i7 processor and motherboard is plenty quick enough
and does not have most of the hardware bugs associated with the last n
generations of intel design errors.  Unfortunately, I cannot update the
BIOS, as Gateway is no longer in business.

So, I guess I will have to use a non-EFI boot for the forseeable future
on this machine.  As an aside, I also have 2 older Lenovo machines that
boot Fedora 31 in EFI mode just fine.

Thanks for helping me out everyone!
___
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: Firefox in wayland

2019-11-11 Thread sixpack13
I'm running FF-wayland on Gnome classic.
I feel (not mesured) it starts/acts soemwhat faster (Intel onbord graphic if 
this matters)
same goes for Thunderbird.

To me running the desktop on wayland has some nasty copy bugs.

if you want to do it as me don't forget to swap FF and TB with their wayland 
parts in the action bar (correct naming ?!)
___
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: Firefox in wayland

2019-11-11 Thread Samuel Sieb

On 11/11/19 11:19 AM, Matthew Saltzman wrote:

On Mon, 2019-11-11 at 17:55 +0100, antonio montagnani wrote:

shall I moveto Firefox-wayland when I use wayland? if I switch to
Gnome
classic what happens??


IIRC, for GNOME, Wayland is the default and firefox-wayland is the
default. You can install and run firefox-x11 even when running Wayland,
but someone else might be able to say whether the reverse is true. For
other desktops, firefox-x11 is the default and if running Wayland, you
can install firefox-wayland.


firefox-wayland is not the default anywhere yet.  It is intended but 
there are still some issues to fix before that.

___
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 PXE boot

2019-11-11 Thread Samuel Sieb

On 11/11/19 10:57 AM, Aaron Gray wrote:

On Thu, 7 Nov 2019 at 03:53, Samuel Sieb  wrote:

On 11/6/19 3:39 PM, Aaron Gray wrote:

Does anyone have PXE booting working ?


Yes, for both legacy and EFI modes.


Right I am only needing legacy



I have BOOTP and TFTP working but it seems to be failing on DNS and
HTTP or HTTPS.


You need to explain in more detail where the boot process is getting 
stuck.  Does the PXE BIOS get an IP address?  Does it load the file from 
the tftp server or does it fail there?



Here's my dhcp.conf :-
~~~
# dhcpd.conf

# option definitions common to all supported networks...
option domain-name "aarongray.org";
option domain-name-servers ns1.hover.com, ns2.hover.com;


This is incorrect, you have to put IP addresses.  You can't resolve the 
names without having a DNS server already. :-)



# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.


I think that's a copy and paste comment that is invalid.


subnet 192.168.2.0 netmask 255.255.255.0 {
authoritative;

   range 192.168.2.1 192.168.2.127;
   option domain-name-servers 8.8.8.8, 8.8.4.4;
   option routers 192.168.1.111;


Your gateway address is not in this subnet.  That won't work.


   option broadcast-address 192.168.2.255;
#  option ip-forwarding off;
   default-lease-time 600;
   max-lease-time 7200;

   option ntp-servers ntp.fedora.org;

   range dynamic-bootp 192.168.2.128 192.168.2.240;
   ddns-update-style none;
   filename "pxelinux.0";
}


When you say tftp is working, do you mean the server is running or that 
the clients are getting the boot file?  You're missing the info telling 
the clients what tftp server to use.  You need a line like:

next-server 192.168.2.1;

Do you have a "pxelinux.cfg" directory on the tftp server?  That would 
be the next step.

___
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: sound bug on update with HDMI

2019-11-11 Thread Cătălin George Feștilă
alsa-info.sh 
http://alsa-project.org/db/?f=57ea2d275137a9b2de34641a84df5cd4c2f10c66

journalctl -b https://paste.centos.org/view/97ca9d38#L78
___
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: sound bug on update with HDMI

2019-11-11 Thread Cătălin George Feștilă
https://paste.centos.org/view/97ca9d38 journalctl -b

http://alsa-project.org/db/?f=57ea2d275137a9b2de34641a84df5cd4c2f10c66  
alsa-info.sh
___
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: Firefox in wayland

2019-11-11 Thread Matthew Saltzman
On Mon, 2019-11-11 at 17:55 +0100, antonio montagnani wrote:
> shall I moveto Firefox-wayland when I use wayland? if I switch to
> Gnome 
> classic what happens??

IIRC, for GNOME, Wayland is the default and firefox-wayland is the
default. You can install and run firefox-x11 even when running Wayland,
but someone else might be able to say whether the reverse is true. For
other desktops, firefox-x11 is the default and if running Wayland, you
can install firefox-wayland.

As I've been using it, firefox-wayland appears to have a pretty severe
memory leak, at least when many tabs are open--eventually, it starts to
spill into swap space. Restarting Firefox mostly clears the problem,
for a while. I haven't tested much with firefox-x11, though. Also, when
I first started running F31, firefox-wayland used a bunch of processor
even when I wasn't doing anything. That seems to have settled down,
though. Not sure if it's just some tab I closed or what, but that was a
behavior change from the version in F30.

> 
> I am confused
-- 
Matthew Saltzman
School of Mathematical and Statistical Sciences
Clemson University
mjs AT clemson DOT edu
___
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 PXE boot

2019-11-11 Thread Aaron Gray
On Thu, 7 Nov 2019 at 03:53, Samuel Sieb  wrote:
>
> On 11/6/19 3:39 PM, Aaron Gray wrote:
> > Does anyone have PXE booting working ?
>
> Yes, for both legacy and EFI modes.

Right I am only needing legacy

> > I am nearly there but was wondering if anyone would share their
> > iptabels/firewall-cmd, dhcpd, and pxelinux.cfg files please ?
> >
> > I have everything up to the dns + http/https stage working.
>
> I'm not sure what this means.  Maybe describe what you have and what's
> not working.

I have BOOTP and TFTP working but it seems to be failing on DNS and
HTTP or HTTPS.

Here's my dhcp.conf :-
~~~
# dhcpd.conf

# option definitions common to all supported networks...
option domain-name "aarongray.org";
option domain-name-servers ns1.hover.com, ns2.hover.com;

default-lease-time 600;
max-lease-time 7200;

# Use this to enble / disable dynamic dns updates globally.
#ddns-update-style none;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

#

allow booting;
allow bootp;

ddns-update-style interim;
ignore client-updates;

# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.

subnet 192.168.2.0 netmask 255.255.255.0 {
   authoritative;

  range 192.168.2.1 192.168.2.127;
  option domain-name-servers 8.8.8.8, 8.8.4.4;
  option routers 192.168.1.111;
  option broadcast-address 192.168.2.255;
#  option ip-forwarding off;
  default-lease-time 600;
  max-lease-time 7200;

  option ntp-servers ntp.fedora.org;

  range dynamic-bootp 192.168.2.128 192.168.2.240;
  ddns-update-style none;
  filename "pxelinux.0";
}

host one-primary {
  hardware ethernet 01:23:45:67:89:AB;
  fixed-address 192.168.2.128;
}
host two-primary {
  hardware ethernet 23:45:67:89:AB:CD;
  fixed-address 192.168.2.129;
}
host three-primary {
  hardware ethernet 45:67:89:AB:CD:EF;
  fixed-address 192.168.2.130;
}
~~~
___
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: Core for a netbook??

2019-11-11 Thread Beartooth
On Mon, 04 Nov 2019 12:12:18 -0800, Samuel Sieb wrote:

> On 11/4/19 6:44 AM, Beartooth wrote:
>>  F30 is on it now, but I can't say it runs. It boots up, and then
>> freezes. Local people who know things tell me it just isn't big enough
>> any more.
> 
> Freezes completely?  At what point?  How much RAM does it have?  I'm
> running Fedora with Mate on 2GB systems.  (The primary reason for not
> Gnome was because there was no 3D acceleration on these very old
> computers.) 

It boots, and lets me log in, and issue a command (actually just 
one tap on the up-arrow) to a tab on the terminal that I set come up on 
login. Then it sits there, until I finally go away. When I get around to 
looking again (usually hours later; I haven't timed it), the command is 
there ready (it thinks) for me to hit enter.

I don't know how much RAM it has: still the original, whatever 
that was. I haven't added any.
-- 
Beartooth Staffwright, Not Quite Clueless Power User
Remember I know little (precious little!) of where up is.
___
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


Firefox in wayland

2019-11-11 Thread antonio montagnani
shall I moveto Firefox-wayland when I use wayland? if I switch to Gnome 
classic what happens??


I am confused
--
Antonio Montagnani
Linux Fedora 31 (Workstation)
Thunderbird 68
Fujitsu
___
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


I wrote a blog on why we moved Fedora 31 to cgroup V2

2019-11-11 Thread Daniel Walsh
https://www.redhat.com/sysadmin/fedora-31-control-group-v2

If you like it, please put it out on social media.
___
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 31 will not shut down completely

2019-11-11 Thread Ed Greshko

On 11/11/19 10:21 PM, John Mellor wrote:

Ok, I installed the 5.4.0.0-0.rc6.git3.1.fc32 kernel from koji, but no effect 
on the problem.

Next, I guess I can try the rawhide kernel.

I also swapped out the nVidia graphics card for an old ATI Cedar card, also to 
no effect.


Another thing you may consider in testing would be to try both

systemctl --force poweroff  and
systemctl --force -force poweroff

Note the caution from the systemctl man page

   When used with halt, poweroff, reboot or kexec, execute the selected
   operation without shutting down all units. However, all processes
   will be killed forcibly and all file systems are unmounted or
   remounted read-only. This is hence a drastic but relatively safe
   option to request an immediate reboot. If --force is specified twice
   for these operations (with the exception of kexec), they will be
   executed immediately, without terminating any processes or
   unmounting any file systems. Warning: specifying --force twice with
   any of these operations might result in data loss. Note that when
   --force is specified twice the selected operation is executed by
   systemctl itself, and the system manager is not contacted. This
   means the command should succeed even when the system manager has
   crashed.

--
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: Fedora 31 will not shut down completely

2019-11-11 Thread John Mellor

On 2019-11-10 3:22 p.m., stan via users wrote:

On Sun, 10 Nov 2019 13:17:33 -0500
John Mellor  wrote:


I'm starting to suspect a broken ACPI change in the newer kernel, but
I'm stuck...

Sure looks like it is a bug.  Try installing the -debug kernel?  At the
least it should give you more messages.  You should probably open a
bugzilla against the kernel with your problem if that doesn't pinpoint
the problem.  As a wild chance you could try installing a rawhide
development kernel to see if it has fixed your issue.  We are close
enough to branch that it should still work.

https://koji.fedoraproject.org/koji/buildinfo?buildID=1410333

Download the rpms for your architecture, and install them from the
directory they are in with
dnf -C install [kernel rpms]


Ok, I installed the 5.4.0.0-0.rc6.git3.1.fc32 kernel from koji, but no 
effect on the problem.


Next, I guess I can try the rawhide kernel.

I also swapped out the nVidia graphics card for an old ATI Cedar card, 
also to no effect.

___
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