Re: Re-install Fedora without destroying user data

2019-06-20 Thread CLOSE Dave
I wrote: > Well, not so fast. suomi's example did not involve LVM but LVM is > the default for Fedora. Trying to follow the example and adjusting > for LVM doesn't work for me. With these kickstart commands, > > bootloader --driveorder=sda --location=mbr --boot-drive=sda > clearpart --none --i

Re: Re-install Fedora without destroying user data

2019-06-20 Thread CLOSE Dave
suomi () wrote: > as far as possible I do the installation(s) using a kickstart file. > It is not possible, when you install from a Live CD. > My disk-partitionning in the kickstasrt file looks like: > > # System bootloader configuration > bootloader --location=mbr --boot-drive=nvme0n1 > # Partiti

Re: Re-install Fedora without destroying user data

2019-06-19 Thread CLOSE Dave
suomi () wrote: > as far as possible I do the installation(s) using a kickstart file. > It is not possible, when you install from a Live CD. > My disk-partitionning in the kickstasrt file looks like: > > # System bootloader configuration > bootloader --location=mbr --boot-drive=nvme0n1 > # Parti

Re-install Fedora without destroying user data

2019-06-18 Thread CLOSE Dave
On a default Fedora installation with a sufficiently large disk, /home is a separate filesystem and should not contain any required system files. Thus it ought to be possible to completely re-install Fedora, the same version as was previously installed, without over-writing /home. I'd like to do th

Re: F29 to F30 VMware upgrade

2019-05-30 Thread CLOSE Dave
Chris Murphy wrote: > We'd need to look at LBA 0 on a broken system to do an autopsy. Once > it's fixed, the evidence of what stepped on it is wiped away. I have two more systems to upgrade, probably next week. If one of them fails in the same way, I'll capture the MBR and post here. --

F30 Zabbix

2019-05-30 Thread CLOSE Dave
On F30, zabbix-agent requires "zabbix = 4.0.7-2.fc30" but zabbix provides "zabbix = 1:4.0.7-2.fc30". The result is that DNF will not update either. -- Dave Close ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email

Re: F29 to F30 VMware upgrade

2019-05-30 Thread CLOSE Dave
Chris Murphy wrote: > Not sure what would corrupt it but there is competition for LBA 0, > the MBR, in that there's a bootloader portion in the first ~440 bytes > and then a partition table from that point until the 512th byte. So > whenever something changes a partition or a boot flag (active bi

F30 createrepo

2019-05-30 Thread CLOSE Dave
In previous installations, /usr/bin/createrepo was a symbolic link to /usr/bin/createrepo_c. Now with createrepo_c-0.14.1-1.fc30.x86_64, that link is no longer created. This disrupts lots of scripts and will force changes to a lot of documentation, including Fedora's own online. -- Dave Cl

F29 to F30 VMware upgrade

2019-05-29 Thread CLOSE Dave
I have upgraded three VMware images previously running Fedora 29 to Fedora 30 using system-upgrade. All the images are running on the same ESC hardware and, so far as I know, use the same VMware foundation. The first worked flawlessly. Both the second and third failed in exactly the same way: they

Re: Resilient network configuration

2019-04-02 Thread CLOSE Dave
Samuel Sieb wrote: > I just tried it and it worked. I was able to add a static address to > my wifi connection while keeping the dhcp one. > "nm-connection-editor" has to be run from the command line, there is > no icon for it. The Gnome connection editor doesn't support doing > this. Perhaps t

Re: Resilient network configuration

2019-04-02 Thread CLOSE Dave
I wrote: > For a primary interface with a static address, I may be able to add > the information as IPADDR2 (etc) in ifcfg-eth0. But how do I do this > if the primary interface gets its address via DHCP? Samuel Sieb answered: > Install "nm-connection-editor". It gives you a lot more > capabilit

Resilient network configuration

2019-04-02 Thread CLOSE Dave
On every version of Fedora in the last ten years or so, the basic network configuration is stored in files under /etc/sysconfig. When the machine boots or I run "systemctl restart network" (or "service network restart"), those files determine how the network gets set-up. After that, I can change th

Re: Using rsync to get the Fedora repositories

2018-12-21 Thread CLOSE Dave
Yesterday, I wrote: > I have a script that uses rsync to pull the Fedora repositories > nightly. If I run it manually, it works flawlessly. But if it runs > via cron, I get an error on all the Fedora 28 repositories. I do not > get the error on Fedora 27 or RPMFusion 27 or 28 repositories. The > s

Re: Using rsync to get the Fedora repositories

2018-12-21 Thread CLOSE Dave
Rick Stevens wrote: > Running interactively but not under cron usually indicates that you've > forgotten that running under cron, you don't have the same environment > as you do in an interactive session. So, make sure your environment is > set correctly in the script (such as the PATH and such).

Using rsync to get the Fedora repositories

2018-12-20 Thread CLOSE Dave
I have a script that uses rsync to pull the Fedora repositories nightly. If I run it manually, it works flawlessly. But if it runs via cron, I get an error on all the Fedora 28 repositories. I do not get the error on Fedora 27 or RPMFusion 27 or 28 repositories. The script sets timeout values to 36

Re: Excessive dependency

2018-10-23 Thread CLOSE Dave
Samuel Sieb wrote: > If you want 52.9 for F28, then you can get it from here: > https://koji.fedoraproject.org/koji/buildinfo?buildID=1104472 > > Then use versionlock or excludes to stop it from upgrading. Thank you! That is exactly what I needed. Now I have to figure out how to re-enable the a

Re: Excessive dependency

2018-10-23 Thread CLOSE Dave
Ed Greshko wrote: > You're running F28 and trying to downgrade to packages in F27. > Basically trying to run a Franken version of Fedora. > > That is not something that is supported. I'm only trying to run an older version of Thunderbird. It's the dependencies that are killing me. -- Da

Re: Excessive dependency

2018-10-23 Thread CLOSE Dave
stan wrote: > Run this as > # dnf -x libreoffice\* --best --allowerasing --enablerepo=fedora27 > --enablerepo=updates27 downgrade thunderbird-52.9.1-1.fc27.x86_64 > > and it should point to the dependency of libreoffice you want to > downgrade that causes it to be erased. > ... > It is probably

Re: Excessive dependency

2018-10-23 Thread CLOSE Dave
Samuel Sieb wrote: >> After upgrading FC27 to FC28 (x86_64), Thunderbird became very >> unreliable and useful extensions stopped working. I decided to take the >> easy solution and just downgrade Thunderbird back to what I had with >> FC27. But for some reason, DNF thinks OpenOffice is dependent o

Excessive dependency

2018-10-23 Thread CLOSE Dave
After upgrading FC27 to FC28 (x86_64), Thunderbird became very unreliable and useful extensions stopped working. I decided to take the easy solution and just downgrade Thunderbird back to what I had with FC27. But for some reason, DNF thinks OpenOffice is dependent on Thunderbird, and deletes it! I

Re: Kernel installed in wrong location

2018-03-21 Thread CLOSE Dave
Ed Greshko wrote: > I have tested this in a VM and verified the failure. There is one > exception. If the /boot directory does not contain a directory with > the name of the "machine-id" then the upgrade will be successful. > > Will you be writing up the BZ? Bug 1559118. -- Dave Close

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
Greshko wrote: >> I think I found the problem. Comparing packages installed on this >> problem machine with others, I noticed that grubby was not >> installed. After installing it and then re-installing the kernel, >> I find the kernel in /boot where it belongs. >> >> Evidently, something isn't

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
I think I found the problem. Comparing packages installed on this problem machine with others, I noticed that grubby was not installed. After installing it and then re-installing the kernel, I find the kernel in /boot where it belongs. Evidently, something isn't checking dependencies sufficiently.

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
Ed Greshko wrote: >> It seems clear that some script or scriptlet in the package is not doing >> its job. But they seem pretty simple and I don't see any dependencies >> which would make them fail on this machine and not others. > That would seem to be a fair conclusion.  > > I think I would loo

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
Roger Heflin wrote: > I would run this and see where rpm thinks they should be since they > are not in /boot > rpm -qa --filesbypkg | grep -i vmlinuz Evidently, RPM thinks they should be in /boot (as I would expect): > $ rpm -qa --filesbypkg | grep -i vmlinuz > kernel-core /boot/.vmlinuz-4

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
The following procedure did NOT fix my problem. Using RPM instead of DNF still did not install the new kernel in /boot. Note, the new kernel is not in /boot when I start. > # ls /boot > 7725dfc225d14958a625ddaaaea5962b > config-4.14.11-300.fc27.x86_64 > efi > extlinux > grub2 > initramfs-0-rescue

Re: Kernel installed in wrong location

2018-03-20 Thread CLOSE Dave
Ed Greshko wrote: >>> All of those directories are empty, yes? >> Most, but not all: >> >>> /boot/7725dfc225d14958a625ddaaaea5962b/4.15.8-300.fc27.x86_64: >>> initrd linux >>> /boot/7725dfc225d14958a625ddaaaea5962b/4.15.9-300.fc27.x86_64: >>> initrd linux > > > I get the feeling, based on the

Re: Kernel installed in wrong location

2018-03-19 Thread CLOSE Dave
Ed Greshko wrote: >> [root@machine ~]# ls /boot/7725dfc225d14958a625ddaaaea5962b >> 0-rescue 4.13.10-200.fc26.x86_64 4.13.9-200.fc26.x86_64 >> 4.11.11-300.fc26.x86_64 4.13.11-200.fc26.x86_64 4.14.11-300.fc27.x86_64 >> 4.12.11-300.fc26.x86_64 4.13.12-200.fc26.x86_64 4.14.4-200.

Re: Kernel installed in wrong location

2018-03-19 Thread CLOSE Dave
Further information from another attempt a few minutes ago. Could the broken pipe be the problem? What could cause that? /boot is at 52%. > # /usr/bin/dnf -y reinstall kernel*-4.15.9-300.fc27.x86_64 > Last metadata expiration check: 23:59:22 ago on Sun Mar 18 14:00:12 2018. > Dependencies resolved

Re: Kernel installed in wrong location

2018-03-19 Thread CLOSE Dave
Further, here is an extract of /var/log/messages for the attempted reinstall, surpressing the timestamp and dracut indicator. > dracut-046-8.git20180105.fc27 > Executing: /usr/bin/dracut > /boot/7725dfc225d14958a625ddaaaea5962b/4.15.9-300.fc27.x86_64/initrd > 4.15.9-300.fc27.x86_64 > dracut modu

Re: Kernel installed in wrong location

2018-03-19 Thread CLOSE Dave
Rick Stevens wrote: >> Fedora 27 x86_64. When DNF installs a new kernel, it isn't going into >> the right place (/boot) and is not detected by GRUB. Why not? > Sure looks like the scriptlet didn't run. I think you should get a > report about the initramfs image and the system map having different

Kernel installed in wrong location

2018-03-19 Thread CLOSE Dave
Fedora 27 x86_64. When DNF installs a new kernel, it isn't going into the right place (/boot) and is not detected by GRUB. Why not? For example, after installing the most recent new kernel, I see this. [root@machine ~]# ls /boot 7725dfc225d14958a625ddaaaea5962b config-4.14.11-300.fc27.x86_64 efi

Fedora documentation

2017-08-29 Thread CLOSE Dave
Online Fedora documentation seems to be intentionally broken. The site has been redesigned and all links fail. Every link redirects to the site main page and the main page does not include any search function. Specifically, the RPM guide (a document which has been in "draft" status for a long time

Docker question

2017-07-24 Thread CLOSE Dave
I've asked this question on the Docker support forum (no email available!) but have seen no answers. If there are other better places to ask, please let me know. I have a Fedora 23 host (to be upgraded to F25 or F26 in the near future). It has two networks and I want to run a Docker container that

Blocking root login via PAM

2017-07-19 Thread CLOSE Dave
If I run ">/etc/securetty" and add "auth [user_unknown=ignore success=ok ignore=ignore default=bad] pam_securetty.so" to various /etc/pam.d/* files (as described in ), ro

Re: Multi-user VNC on F23 and later

2017-07-12 Thread CLOSE Dave
Ed Greshko wrote: > Oh, and since I think you said you're not using IPv6 for anything you > can disable it completely and try again. > > Adding ipv6.disable=1 to the boot parameters seems to work the best. > That way it is disabled from boot time. That did it! The greeting screen now appears as

Re: Multi-user VNC on F23 and later

2017-07-10 Thread CLOSE Dave
Ed Greshko wrote: > I found that if I have ListenStream=192.168.1.198:5901 in my > xvnc.socket file I also get a failure on boot. I thought it could > have been due to my using DHCP on that VM. I changed it back to > ListenStream=5901. Can you try just having that? The socket now reports that

Re: Multi-user VNC on F23 and later

2017-07-10 Thread CLOSE Dave
On 07/10/17 17:32, Ed Greshko wrote: > Odd that you're getting an IPV6 error message. I don't have a global > IPv6 address and only show > > [egreshko@f25f system]$ ip address show enp0s3 > 2: enp0s3: mtu 1500 qdisc fq_codel state UP > group > default qlen 1000 > link/ether 08:00:27:15

Re: Multi-user VNC on F23 and later

2017-07-10 Thread CLOSE Dave
Ed Greshko wrote: > You have a line in the Service segment of "Type". I do not have that > and it isn't in the original file in /lib/systemd/system. Did you > add that? Rick Stevens wrote: > I believe "Type=simple" is the default if you have "ExecStart=" > defined, but it wouldn't hurt to add

Re: Multi-user VNC on F23 and later

2017-07-10 Thread CLOSE Dave
Ed Greshko wrote: >> HOWEVER, when I connect with "vncviewer server::5901", I get a blank >> screen with a momentary F8 prompt. I do not see the normal greeting >> screen. Something is still missing. > Then I noticed one thing which seems off or odd do me. > > When you do "systemctl -l status x

Re: Multi-user VNC on F23 and later

2017-07-10 Thread CLOSE Dave
Ed Greshko wrote: > You actually don't want xvnc@.service to be enabled or started. The > connection to the socket triggers starting of Xvnc I realized that a while ago but forgot. It is presently not enabled. > I find it odd that you get this "Listen: 10.76.185.91:5901" when > your file below

Re: Multi-user VNC on F23 and later

2017-07-07 Thread CLOSE Dave
Ed Greshko wrote: > OK. Sorry to have misunderstood precisely what you want to do. I > now have it working as I suspect you need it. Great. Thanks. > 1. Yes, you need KDM. So, if you've not installed it do so. > > 2. Edit /etc/kde/kdm/kdmrc the [Xdmcp] section Enable=true. > > 3. Go to /

Re: Multi-user VNC on F23 and later

2017-07-07 Thread CLOSE Dave
I wrote: > I'm trying to setup a multi-user VNC server on recent versions of > Fedora without success thus far. I understand that doing so requires > a display manager with XDMCP support. The current default DM is SDDM > which does not include such support (at least so far as I've found). > That m

Multi-user VNC on F23 and later

2017-07-06 Thread CLOSE Dave
I'm trying to setup a multi-user VNC server on recent versions of Fedora without success thus far. I understand that doing so requires a display manager with XDMCP support. The current default DM is SDDM which does not include such support (at least so far as I've found). That means I need to c

Re: dnf reposync documentation?

2017-02-23 Thread CLOSE Dave
On 02/14/17 18:31, Rick Stevens wrote: > Try "dnf reposync --repoid google-chrome". The "--repoid > google-chrome" works with repoquery. The reference to repoid "google-chrome" apparently refers to the name in the .repo file (in /etc/yum.repos.d). But it also apparently is used to determine whe

Re: dnf reposync documentation?

2017-02-15 Thread CLOSE Dave
On 02/14/17 18:47, Ed Greshko wrote: >> Try "dnf reposync --repoid google-chrome". The "--repoid google-chrome" >> works with repoquery. > > Yes, that would work. Except, it seems, > https://bugzilla.redhat.com/show_bug.cgi?id=1325350 is currently unresolved. > > So, one must add keepcache=true t

dnf reposync documentation?

2017-02-14 Thread CLOSE Dave
# uname -a Linux machine 4.9.9-200.fc25.x86_64 #1 SMP Thu Feb 9 17:28:13 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux # man dnf.plugin.reposync No manual entry for dnf.plugin.reposync Copying arguments from my working (YUM) reposync command doesn't work. # dnf reposync -r google-chrome --norepopath

Problems with kernel 4.7.10-100.fc23

2016-11-10 Thread CLOSE Dave
I have several machines still running Fedora 23 but otherwise kept current with all posted updates. The latest kernel, 4.7.10-100.fc23, is causing me several troubles. 1. On these machines, I run iptables but not firewalld. The only reason I need either is to provide a NAT service. With the lat

Re: install.img

2016-11-02 Thread CLOSE Dave
On 11/02/16 06:05, Michael Schwendt wrote: > FWIW, I only remember such a file [install.img] from older releases > of Fedora up to Fedora 14. For F20 there has been a separate > squashfs.img. > > So, maybe tell which instructions you're trying to follow. 1. install.img is present in the F24 direc

Re: install.img

2016-10-31 Thread CLOSE Dave
On 10/31/16 13:47, Rick Stevens wrote: > Note there are two files each in the pxeboot and isolinux directory > trees, initrd.img and upgrade.img. There is no install.img. There was > a major rehash of the way the installers worked at F22 or > thereabouts, so that might explain it. Checking the rel

Re: install.img

2016-10-31 Thread CLOSE Dave
On 10/31/16 12:11, stan wrote: > What is an install.img file? That is, what is its function? Is it > possible that it is actually called initrd.img? I've never seen a clear description of each of the files involved in a PXE installation, but install.img is certainly one of them. It may be the

Re: install.img

2016-10-31 Thread CLOSE Dave
On 10/31/16 12:23, jd1008 wrote: > Good grief You wqant to be spoonfed??? > > see > http://mirrordenver.fdcservers.net/fedora/linux/releases/20/Fedora/x86_64/os/ Well, maybe I'm blind, but that looks the same as fedoraproject to me. Is there some reason install.img is invisible to me? -- Dav

Re: install.img

2016-10-31 Thread CLOSE Dave
>> I need a copy of the install.img file for Fedora 20. It doesn't seem to >> be present in archives.fedoraproject.org or in the F20 netinstall ISO. >> Can anyone point me to a copy? On 10/31/16 11:47, jd1008 wrote: > See http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/ Thanks

install.img

2016-10-31 Thread CLOSE Dave
I need a copy of the install.img file for Fedora 20. It doesn't seem to be present in archives.fedoraproject.org or in the F20 netinstall ISO. Can anyone point me to a copy? -- Dave Close ___ users mailing list -- users@lists.fedoraproject.org

Strange F24 upgrade

2016-09-08 Thread CLOSE Dave
I have several machines I've recently upgraded from F23 to F24 using DNF. Daily upgrades of F24 packages on most of them are proceeding as expected. But this morning I found one that did a very peculiar "upgrade". Details below. # cat /etc/fedora-release Fedora release 24 (Twenty Four) # rpm -q

YUM check (Re: Cleaning up after an aborted upgrade)

2016-09-08 Thread CLOSE Dave
Samuel Sieb wrote: >> Is there any counterpart of the old "yum check" where I can verify >> everything is now ok? >> > I don't know what "yum check" did. What are you trying to verify? From the man page for YUM. > check Checks the local rpmdb and produces information on any >problems

Re: Cleaning up after an aborted upgrade

2016-09-07 Thread CLOSE Dave
Samuel Sieb wrote: >> It seems to be trying to put everything back to F23. "rpm >> -qa|sort" shows that almost all of the fc23 packages are paired >> with fc24 packages, both of which are installed. Is there any >> reason I can't just remove the redundant packages? >> > You probably have both fedo

Re: Cleaning up after an aborted upgrade

2016-09-07 Thread CLOSE Dave
Samuel Sieb answered my plea for help. Thanks! > First do "rpm --rebuilddb" to make sure the rpm database is consistent. > Run "systemd-cat --version" to make sure you're currently running 229. > If so, then do "rpm -e systemd-222-14". Then try the upgrade again. I was running 229 (fc24) as you

Cleaning up after an aborted upgrade

2016-09-06 Thread CLOSE Dave
I have a machine where I tried to do a system-upgrade from F23 to F24. The download portion worked fine but after the reboot, the upgrade process aborted. I'd like to know why, but first I need to clean up the mess so I can try it again. Right now I have 4782 total packages installed including

Dell Inspiron 17 with Fedora

2016-08-19 Thread CLOSE Dave
This is just a notice for those who may care. I installed Fedora 23 on a Dell Inspiron 17 laptop. If I use the latest kernel, 4.6.6-200, the screen flickers incessantly except when the touchpad is used to move the cursor. If I use a slightly older kernel, 4.5.7-202, everything works fine. -- D

Re: Kickstart with a static interface

2016-08-18 Thread CLOSE Dave
I wrote: > I want to kickstart a laptop with (of course) just one Ethernet > interface. I can make it DHCP during the kickstart but I need it to end > up as a static interface after installation. Is that possible? How? > I should add that the static address I need after installation is > private,

Re: Kickstart with a static interface

2016-08-18 Thread CLOSE Dave
I wrote: > I want to kickstart a laptop with (of course) just one Ethernet > interface. I can make it DHCP during the kickstart but I need it to end > up as a static interface after installation. Is that possible? How? I should add that the static address I need after installation is private, no

Kickstart with a static interface

2016-08-18 Thread CLOSE Dave
I want to kickstart a laptop with (of course) just one Ethernet interface. I can make it DHCP during the kickstart but I need it to end up as a static interface after installation. Is that possible? How? -- Dave Close -- users mailing list users@lists.fedoraproject.org To unsubscribe or change s

Kickstart dependency resolution

2016-06-28 Thread CLOSE Dave
I have a local mirror of Fedora 23, kept current nightly. In the updates mirror, there is a plasma-workspace-5.6.5-1.fc23.x86_64.rpm and a plasma-workspace-common-5.6.5-1.fc23.x86_64.rpm. There are no copies of the 5.6.4-1 RPMs. Nonetheless, when I try to install to a particular machine, kickst

Re: F23 KDE stability issues

2016-06-15 Thread CLOSE Dave
On 06/14/16 09:33 PM, Tim wrote: >> When I leave my desk, I lock the screen but I disable locking based on >> inactivity. As long as this works, I'm happy. > > Obvious question: Just a simple screen lock, or is there a screensaver > running (some of them were terrible at crashing X)? > > I'd try

F23 KDE stability issues

2016-06-14 Thread CLOSE Dave
I'll be the first to admit that I don't use Fedora in a conventional way. But it suits me -- or it did until things started misbehaving a few weeks ago. Now I'm finally disgusted enough to write some notes and hope for good advice. I run F23 with the KDE desktop in what used to be called runlev

F23 kickstart stalls

2016-04-26 Thread CLOSE Dave
Trying to kickstart a Dell R630 with ten total Ethernet ports, I see this output. Starting installer, one moment... anaconda 23.19.10-1 for Fedora 23 started. * installation log files are stored in /tmp during the installation * shell is available on TTY2 * when reporting a bug add logs fro

Re: F23 dracut can't find disk

2016-04-25 Thread CLOSE Dave
On 04/21/16 05:05 AM, Harald Hoyer wrote: > If you change hardware or want to use the initramfs on another > machine, it is easier to build a generic initramfs. > > The generic mode can be activated by: > *-N, --no-hostonly > Disable Host-Only mode > > or > > * hostonly=no >

Re: F23 dracut can't find disk

2016-04-19 Thread CLOSE Dave
I wrote: > I have five machines which were fresh-installed with F23 back in > February and all have been booted successfully a few times since. > Today, booting of all of them fails in exactly the same way: dracut > says it can't find the disk filesystems. The kernel boots as it > should, and of c

Re: F23 dracut can't find disk

2016-04-07 Thread CLOSE Dave
On 04/07/16 05:56 PM, Rick Stevens wrote: > Glad to help. Did the rebuild of the ramdisk work? Are you running > the new kernel? Just curious as this may happen on the next update, > too. I hope to have time for that tomorrow. -- Dave Close -- users mailing list users@lists.fedoraproject.org To

Re: F23 dracut can't find disk

2016-04-07 Thread CLOSE Dave
I wrote: > I have five machines which were fresh-installed with F23 back in > February and all have been booted successfully a few times since. > Today, booting of all of them fails in exactly the same way: dracut > says it can't find the disk filesystems. The kernel boots as it > should, and of c

F23 dracut can't find disk

2016-04-07 Thread CLOSE Dave
I have five machines which were fresh-installed with F23 back in February and all have been booted successfully a few times since. Today, booting of all of them fails in exactly the same way: dracut says it can't find the disk filesystems. The kernel boots as it should, and of course that comes

Re: DNF is a time waster

2016-03-29 Thread CLOSE Dave
Several folks have responded that they don't see the same behavior I do. I don't doubt that. Even for me, the behavior is erratic, sometimes very slow, sometimes not. The specific instance which prompted my note was an attempt to install from a local RPM file, not even from a repository. The ma

DNF is a time waster

2016-03-29 Thread CLOSE Dave
If I run something like, "dnf -y install ", and is already installed, DNF gives a response like the following. Last metadata expiration check performed 0:00:02 ago on ... Package is already installed, skipping. ... (long delay, sometimes several minutes) ... Dependencies resolved.

Re: Installing F23 WS on Dell Inspiron 17 (5758)

2016-03-01 Thread CLOSE Dave
Ted Roche wrote: > Could you plug in a mouse? Ah, that's too simple! I'm embarrassed. Of course that works. But I standby my complaints about how it doesn't work to do it using the keyboard. Because the selected buttons are not clearly indicated and are not arranged in a predictable sequence.

Installing F23 WS on Dell Inspiron 17 (5758)

2016-03-01 Thread CLOSE Dave
Using the F23 workstation net install ISO, installation is nearly impossible because the touchpad is not working and the selected buttons are not clearly indicated. The touchpad works in the BIOS. I'd be happy to solve this issue after installation if I could get that done. But using TAB etc to

Re: Virtual consoles (was desktops) on F23 server edition

2016-02-26 Thread CLOSE Dave
Rick Stevens wrote: >> So my vconsoles are properly configured and work correctly outside of X. >> While X is running, if I press CTRL-ALT-F2, for example, the F2 vconsole >> does not start and the X display remains. However, X is stuck; keyboard >> or mouse input does not work. Remote access via

Re: Virtual consoles (was desktops) on F23 server edition

2016-02-26 Thread CLOSE Dave
Rick Stevens wrote: > tty2-6 will not be started unless you try to use them (e.g. the getty > on tty2 will only start if you use ALT-F2 from a console screen or > CTRL-ALT-F2 from the desktop). Once they're started, however, they > continue to run. I fully understand this. I now believe the probl

Re: Virtual desktops on F23 server edition

2016-02-25 Thread CLOSE Dave
stan wrote: > Run systemctl -a -t service > and search the output for tty. It's less, so /tty will do it. There > should be a service running for each getty. # systemctl -a -t service | grep tty getty@tty1.service loadedinactive deadGetty on tty1 > If there i

Re: Virtual desktops on F23 server edition

2016-02-25 Thread CLOSE Dave
I wrote: > My file is identical to the default except, > >NAutoVTs=6 # same as default >ReserveVT=6# same as default >LidSwitchIgnoreInhibited=yes Hit send to quickly. That last should be "LidSwitchIgnoreInhibited=no". -- Dave Close, Thales Avionics, Irvine California USA. ce

Re: Virtual desktops on F23 server edition

2016-02-25 Thread CLOSE Dave
stan wrote: >> I don't seem to have any virtual desktops available after a fresh >> installation of F23 server edition. What am I missing? > Do you have the following files on your system? > /usr/lib/systemd/system-generators/systemd-getty-generator > /usr/lib/systemd/system/console-getty.service

Re: Virtual desktops on F23 server edition

2016-02-24 Thread CLOSE Dave
On 02/24/16 02:45 PM, Joe Zeff wrote: > Virtual desktops are normally a part of a GUI, which isn't part of the > default installation for the server edition. Do you mean that you don't > have the alternate text consoles that should be available? Yes. Sorry for the terminology confusion. -- Dave

Virtual desktops on F23 server edition

2016-02-24 Thread CLOSE Dave
I don't seem to have any virtual desktops available after a fresh installation of F23 server edition. What am I missing? -- Dave Close -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Fedora

FW: Firefox 44 on Fedora 23 won't start

2016-02-21 Thread CLOSE Dave
-Original Message- From: CLOSE Dave Sent: Thursday, February 18, 2016 06:17 PM Pacific Standard Time To: support-fire...@lists.mozilla.org Subject:Re: Firefox 44 on Fedora 23 won't start I wrote: > A fresh installation of Firefox 44 on a fresh installation o

error setting up base repository

2016-02-04 Thread CLOSE Dave
The subject message sometimes appears on the installation source entry from anaconda. But I have never been able to find a good way to learn just what the error is. Sure, sometimes it's obvious: the URL is wrong. But other times everything seems to be correct but still the error persists. I'm l

Re: PXE Fedora 23 with Anaconda 20?

2016-02-04 Thread CLOSE Dave
I wrote: > I've been trying to get a new working PXE installation for F23 and it > isn't working. I just noticed what might be the problem. Although > I downloaded the vmlinuz and initrd.img from the F23 server > version archive, when the installation starts it shows F20 in the > upper-right and c

F23 PXE strange failure

2016-01-19 Thread CLOSE Dave
I'm working with a new PXE configuration file which may certainly contain some errors. Usually, it terminates with a "pane dead". But after the latest modification, it terminated by going to the Dracut emergency shell. In itself, that might help me, even though thus far I haven't found my error

Re: Fedora 22 - Change login screen resolution?

2015-10-27 Thread CLOSE Dave
CS DBA wrote: > I'm playing around with Fedora 22 (KDE spin) on a macbook pro retina. I > can login and change the screen resolution and it stays permanent. > However the login screen is still tiny, anyone know how to change / > scale the resolution of the login screen? I've got some systems with

Can't upgrade F21 to F22

2015-10-26 Thread CLOSE Dave
Output below. This has been repeated all day. Any thoughts? [root@dsusim ~]# cat /etc/fedora-release Fedora release 21 (Twenty One) [root@dsusim ~]# fedup --clean resetting bootloader config removing boot images removing downloaded packages removing miscellaneous files [root@dsusim ~]# yum u

reposync for two Fedora versions

2015-03-31 Thread CLOSE Dave
I've been running reposync successfully for Fedora 20 for months. Now I'd like to repeat the process for Fedora 21 while continuing to take updates for F20 on the same machine. But it isn't working for me. /usr/bin/reposync -n -a x86_64 -r fedora21 -p /data/yum-mirrors/x86_64 Error setting up re

Re: Anaconda illegal address

2015-01-29 Thread CLOSE Dave
Joe Zeff wrote: > Closing a bug as a duplicate isn't saying that it's not a bug. It means > that the bug's already been reported, and that it's a waste of resources > keeping two versions of the report open. But it does mean that when the referenced report has already been closed and marked NOT

Re: Anaconda illegal address

2015-01-29 Thread CLOSE Dave
I wrote: > I will now open two BZ reports: > > 1. Anaconda should fail with a useful message when a required address > is missing. My report has now been closed, marked as a duplicate of BZ 1178320. That means at least one developer thinks providing a useless error message is not a bug. I strongl

Re: Anaconda illegal address

2015-01-29 Thread CLOSE Dave
Chris Murphy wrote: > I mean, when there's a crash libreport should pop up and offer to file > the bug for you. You need to enter bugzilla credentials and then it > automatically files the bug details including uploading all files. > Before it does this, it checks if a bug has already been filed w

Re: Anaconda illegal address

2015-01-29 Thread CLOSE Dave
Chris Murphy wrote: >> When anaconda complains about an "illegal IP address string passed >> to inet_aton", how can I discover what the bad string contains? So >> far as I can see, all the configured addresses are perfectly valid. >> Here's a copy of the traceback: . > If you

Anaconda illegal address

2015-01-28 Thread CLOSE Dave
When anaconda complains about an "illegal IP address string passed to inet_aton", how can I discover what the bad string contains? So far as I can see, all the configured addresses are perfectly valid. Here's a copy of the traceback: . -- Dave Close, Thales Avionics, Irvine

Re: Two independent SSHD processes?

2015-01-21 Thread CLOSE Dave
Ed Greshko wrote: > You probably will want to follow this procedure in F21 > https://access.redhat.com/solutions/1166283 Thanks. That works perfectly in F20. So we appear to have confirmed that the default installation is broken in SysV versions (mine are F13). The linked page points to ano

Re: Two independent SSHD processes?

2015-01-20 Thread CLOSE Dave
Ed Greshko wrote: > Well, I don't "seem" to be telling you. I'm actually showing you. > :-) :-) Yes, and thank you. But you didn't explicitly mention the version. In my original note, I said I'd only tried SysV. Before I make the effort to do it on systemd, I thought it would be worth asking for

Re: Two independent SSHD processes?

2015-01-20 Thread CLOSE Dave
Ed Greshko wrote: >> But if you read the SSHD man page and the /etc/rc.d/init.d/sshd script, >> you'll find that the PID is always recorded at /var/run/sshd.pid and the >> PidFile variable is only used for reporting status. > And if you tried it? > > [root@meimei run]# grep pid /etc/ssh/sshd_conf

Re: Two independent SSHD processes?

2015-01-20 Thread CLOSE Dave
Ian Pilcher and others wrote: > There is a "PidFile" option in the config file that can be used to > control this. But if you read the SSHD man page and the /etc/rc.d/init.d/sshd script, you'll find that the PID is always recorded at /var/run/sshd.pid and the PidFile variable is only used for r

Two independent SSHD processes?

2015-01-20 Thread CLOSE Dave
I'd like to run two SSH daemons on the same machine. They will listen on different ports and have other differences in their configuration. I want these two daemons to be independent of each other: either can run while the other is stopped. I need to do this for recent (systemd) machines and fo

  1   2   >