If auto neg is set on one end, and not on the other end, then the
standards says set things to 100mb/half (for gbit cards) since you
were unable to get information from the other end I believe this was
judged the most likely to work reasonably by the people who write the
standard. On 100mbit adapt
find /foo -name "*dog.dat" -ls -exec tail -f {} \;
-print will list only the filename
-ls will list the long dir entry.
{} is needed to deliver the filename you are working with.
\; is needed to signal the end of the command.
On Sat, Mar 3, 2018 at 12:45 PM, Clifford Snow wrote:
> Correction - I
I would run this and see where rpm thinks they should be since they
are not in /boot
rpm -qa --filesbypkg | grep -i vmlinuz
On Tue, Mar 20, 2018 at 2:05 PM, CLOSE Dave
wrote:
> The following procedure did NOT fix my problem. Using RPM instead of DNF
> still did not install the new kernel in /boo
The only way I know to produce these results would be to override the
build_root location someplace.
echo ${RPM_BUILD_ROOT}
There are probably other ways to override it.
On Tue, Mar 20, 2018 at 3:24 PM, CLOSE Dave
wrote:
> Roger Heflin wrote:
>
>> I would run this and see where rpm
You can also use lsinitrd to show the current files in any initramfs
and/or cat out the contents of single files you see in the initramfs.
On Sat, Apr 14, 2018 at 10:43 AM, wrote:
>
> On Sat, 14 Apr 2018 15:07:28 - Grant Edwards wrote:
>> On 2018-04-14, francis.montag...@inria.fr wrote:
>>>
Reinstalling any rpms you have a reason to suspect have issues should
be just fine. I have personally reinstalled the kernel rpm a number
of times when the update aborted before completion.
On Mon, May 7, 2018 at 3:54 AM, Danny Horne via users
wrote:
> Hi all,
>
> A few days ago I updated throu
Multiple versions of kernels are installed, so you will have to
explicitly give it the version you want it to reinstall.
grep -i kernel /var/log/dnf.log to get the full names you need to reinstall.
On Mon, May 7, 2018 at 10:34 AM, Danny Horne via users
wrote:
> On 07/05/18 15:37, Roger Hef
Generally when I am messing with usb drives I have used these 2 commands:
grep Dirty /proc/meminfo (dirty is the amount of write buffers that
need to be flushed for all disks, most will usually be the disk that
was just copied to)
the second is "vmstat 1" and watch the bi/bo columns as they show
I don't sync like Bob does, I just watch the io to estimate the copy
time of whatever amount I am copying.
On Mon, May 7, 2018 at 8:34 PM, Cameron Simpson wrote:
> On 07May2018 20:23, Roger Heflin wrote:
>>
>> the second is "vmstat 1" and watch the bi/bo columns as
You may want to install sysstat (sar) and look at the rates by doing
sar -n EDEV and sar -n DEV to compare the drops vs packets.In my
experience on critical production systems if the rate is less than 1
(drop/error/...) per 10,000 packets then in general you won't see a
performance impact. Th
you might try a find /sys -name "rc1*" and see if some piece of hw has
that name. It may be some driver trying to manage the ir remote
hardware.
When I do it on my machine I get this:
find /sys -name "rc1*" -ls
33248 0 drwxr-xr-x 5 root root0 May 8
15:50 /sys/devices
install modulename /bin/true
blacklist won't prevent a dependency from loading a module, I have
sometimes just did a mv on the ko file and depmod to rebuilt the
module index, but that has to be redone each new kernel.
___
users mailing list -- users@list
I have had issues like that that tracked back to the usb card not
having enough power and needing the extra power adapter connected, so
you may want to try that. Especially if anything on the card may be
using a lot of power (I have had web cams and hard disks both cause
it).
On Thu, May 31, 201
If you want to debug it the easy way do this:
create /usr/local/bin/slowcpus and make it executable and put the
commands in it and test it from the cmd line:
Then in rc.local do this:
/usr/local/bin/slowcpus > /tmp/slowcpu.out 2>&1
On Sun, Jun 24, 2018 at 7:26 PM, Ed Greshko wrote:
> On 06/2
startx has worked for me on Fedora 27, and it did start the same
desktop as what graphical -> login as same user started.
On Sun, Jul 8, 2018 at 4:18 AM, Patrick O'Callaghan
wrote:
> On Sat, 2018-07-07 at 18:12 -0700, solarflow99 wrote:
>> On Sat, Jul 7, 2018 at 2:27 AM, Patrick O'Callaghan
>> w
Stay away from the <$50 for 2-4 ports, most of them are pretty bad.
One of the cheaper old LSI ones. I have one that was bought used and
flashed into a pure sata controller.
Mine is a: SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon] and/or The
LSI 9211-8i 6Gb/s SATA +SAS HBA,
It is around $80 and
For JBOD disks the LSI or the build-in Intel or AMD ports seem to be
equally as fast since they are all connected to the CPU with enough
PCI-e lanes, and for most usage cases it is plenty fast enough.
I have had bad luck with at least 2 different marvell chipsets, so
won't touch those. One of t
The vgarchive file 0 is the first archive file ever from that vg,
so it would most likely be an empty new vg at that time.
Are you sure 0 is the file you want?
Suggest doing this:
grep -i before /etc/lvm/archive/vg_debussy*
and see what the newest file is before you did the remove missin
-l does not umount a filesystem if files are open on it. Not sure -l
should ever be used, one needs to determine what is using the
filesystem and a normal umount needs to be done.
So even though it does not show in df and /proc/mounts the filesystem
is still mounted which is why resize2fs says i
Did you rerun the resize2fs after the reboot/lvmresize/fsck?
On Tue, Sep 18, 2018 at 10:03 AM Patrick Dupre wrote:
>
> I am not sure about the +100.
>
> However, I rebooted without mounting /home
> and I used lvm manager to do the resize.
>
> It seems OK, except that
> 1) it shows "none" for the f
If you have the original disk and can mount the filesystem then do this:
create a script like this and call it say /dir/testcatfile:
cat $1 > /dev/null
RC=$?
if [ ${RC} != 0 ] ; then
echo "$1 is corrupt"
fi
chmod +x /dir/testcatfile
Then do this:
find /tmp -type f -exec /dir/testcatfile {} \;
>
> Many thanks,
> Ranjan
>
> On Sat, 22 Sep 2018 14:09:02 -0500 Roger Heflin wrote:
>
> > If you have the original disk and can mount the filesystem then do this:
> >
> > create a script like this and call it say /dir/testcatfile:
> > cat $1 > /dev/
A logitech 920 is $50 on amazon. Not sure I would mess with another
brand for a few dollars savings.
The 920's I have used worked well with fedora and were really clear.
On Sat, Sep 22, 2018 at 4:31 PM Howard Howell wrote:
>
> Hi, guys,
> Looking for an inexpensive webcam. Found this on
Run this:
systemd-analyze critical-chain network-online.target
On Wed, Apr 10, 2024 at 6:20 AM Sam Varshavchik wrote:
>
> Samuel Sieb writes:
>
> > I have a similar problem where the wait-online service suddenly started
> > taking a very long time and then failing. My system that used to boot i
castor is someplace on your machine defined as the linux node's hostname.
dhcp-client does deliver the defined hostname in the dhcp
requests/responses to the router when it asks for the IP address.
What does 'hostname' report? and 'hostnamectl' report as the hostname?
On Sat, May 4, 2024 at 10
On Wed, May 8, 2024 at 5:09 AM John Pilkington wrote:
>
> On 08/05/2024 10:18, Tim via users wrote:
> > On Tue, 2024-05-07 at 17:36 -0400, Jonathan Billings wrote:
> >> Some home router/gateways will remember the hostname a system used as
> >> part of their network, and when handing out the same I
You do not need to tell it anything.All of my systems run until I
reboot them or the power goes off.
Do you mean keeps going to a "crash", ie not something issuing a
controlled reboot? If so then you likely have a hardware issue.
Note when I ran large supercomputers with long running jobs an
That would have to have been a mariadb config file/code change to no
longer allow root at localhost to access without a password.
Based on this change adding the root@localhost type auth on Windows
then it should work.
https://jira.mariadb.org/browse/MDEV-26715
Those changes were 10.11.0 so I won
you need to add these mounts to allow full function under a rescue
boot+mnt+chroot.
mount -o bind /proc /mnt/linux/proc
mount -o bind /sys /mnt/linux/sys
mount -o bind /dev /mnt/linux/dev
mount -o bind /dev/pts /mnt/linux/dev/pts
Typed from memory. I have done way too many live cd rescue boots.
man btrfs
But In general I always use defaults for the option and then override
any others.
And remount-readonly is a default option on ext4 and I don't believe
it was ever necessary to supply it.
On the above I would use defaults,noauto,nofail
On Sat, Jun 1, 2024 at 10:06 AM Patrick Dupre via
If you have 2 separate sessions open for the given user last save/exit
wins and overwrites the history file. This may be an
oversimplification but 2 sessions both saving out do seem to make a
mess.
And if there is no -TERM and/or clean exit then nothing gets written out.
I have trained people on
The easy solution is chattr +i and that will block all
further changes to the file forever.
It is kind of a last resort.
On Tue, Jun 4, 2024 at 6:24 PM Sam Varshavchik wrote:
>
> So I was tearing my hair out trying to figure out why attempts to push via
> DAV to a git repo were failing.
>
> Ev
On mine I have md raid1 configured for /boot. Old install no
/boot/efi but it should also work for /boot/efi because even with
mdraid the bios/efi will still be able to find what it needs to find
to boot but when the OS comes up it mounts the md-raid raid1 devices.
This would allow you to survive
You would need to find the log file that starts up Xorg after you login it.
There are a number of things that can be set wrong and/or missing that
will cause Xorg to attempt to start and fail and exit like this.
F39 puts the log file here on my machine.
/var/log/Xorg.0.log
On most of my machines
Intel AX200 series works great in my 2 laptops. Much better than the
non-intel crap.
The support is not a Fedora issue, it is simply a Linux Kernel issue.
The qualcomm native kernel driver is not good. I replaced one in a
laptop 4 years ago, and when I got a new laptop struggled with the new
q
Steve's problem sounds like a Xorg/Wayland graphics issue/bug that
firefox somehow triggers.
My firefox has acted off for a while. Typically is it seems to get
bogged down using a lot of ram (2-10GB for at least one firefox
process), but more recently I don't see the big memory usage but it
seems
For me when an update happens for firefox (not sure if it is a firefox
update or just some libraries it uses, or both) it does not crash
(that I notice) but simply stops working (web page refresh and other
things don't work anymore).
So in the firefox case something extreme enough is happening tha
Did you build a mdadm raid1 or a dm-raid raid 1?
+imsm means you built a dm-raid device (software raid that the
bios/efi is aware of) and it is slightly different from a normal
mdadm.
If it works and uses the correct device names on each boot up then I
would not touch it.
If you do touch it then
aller.
> Makes me wonder, should something happen to the MB, will it be problematic to
> move the discs to another system?
> I am assuming if one disk falls, the mdmraid commands to rebuild the array
> would still be the same
>
>
> On Tue, Jul 2, 2024, 11:15 Roger Heflin wr
You need to add this to the grub kernel boot line:
bootdegraded=true
otherwise the default behavior is to freak out and not work.
On Wed, Jul 3, 2024 at 5:17 AM François Patte
wrote:
>
> Bonjour,
>
> I need to remove a disk from a raid1 array and restart the computer
> *without* that disk and wit
If it is only giving btrfs errors on 6. 9.x and not the rescue kernel and
6.8.x that would seem like a potential kernel bug. Run on 6.8.x and wait
for say 6.10 would be best.
On Fri, Jul 26, 2024, 12:31 PM Richard Shaw wrote:
> On Fri, Jul 26, 2024 at 8:59 AM John Mellor wrote:
>
>> On 2024-07
That is typically the sort I would do. I usually just use the find
option "-ls" and not the exec. And for warm and fuzzy feelings you
can add a -ls on thd fine command after the chmod's \;
On Mon, Jul 29, 2024 at 11:43 AM bruce wrote:
>
> Hi
>
> I'm looking to update the permissions of a bunch
Is this a spinning disk or an SSD? And what are you writing to the
disk?And what filesystem is on the disk?
On Thu, Aug 15, 2024 at 12:23 PM Andre Robatino
wrote:
>
> Testing a little more, the transfer speed between the desktop's black USB
> ports and the portable drive is only slow (arou
You might install usbview and run it. It will give you a gui window
and let you drill down and examine what each USB device looks like.
It would make me think it is some BTRFS issue. maybe for some reason
the disk is fragmented and having to write blocks all over the place.
The way I know to tes
So it is only slow on the slow port? If so it kind of sounds like the
fs may be mounted sync and/or the disks write cache is disabled.
smartctl --xall sometimes works against usb disk and
sometimes it does not work. if it works it will tell you the write
cache status. The sync and/or btrfs fil
On any other filesystems I have used, using sync makes performance suck.
No idea about what is normal/ok for btrfs.
You might see if all btrfs filesystems are using sync or just the
removable ones are.
On Thu, Aug 15, 2024 at 5:21 PM Andre Robatino
wrote:
>
> The output of "smartctl --xall /dev
Someone seems to have added it to setup a snmp config. It is
unlikely you want an snmp config/install, its only use is for external
monitoring via the network (without ssh access) and is for the most
part not being used much anymore.
You might do a man smartd.conf and see if there is an option t
So here is why sync sucks only on a usb 2.0 connection.
The host fills up the disks write cache some portion of
(32MB/64MB/128MB) and then the disk waits for the head get to were the
data needs to be written and writes it, as the write cache clears
space the host sends more data, but at usb2.0 the
On Fri, Aug 16, 2024 at 12:12 PM Barry wrote:
>
>
>
> > On 16 Aug 2024, at 08:54, Frederic Muller wrote:
> >
> > Serial port also requires sudo ( /dev/ttyACM0 ) for betaflight to be able
> > to access it
>
> Look into adding a udev rule to set the permissions you need on the serial
> device.
>
Zero chance they back that out. It is not a regression in the
kernel, a valid fix exposed bad code in user space.
The defect is in user space commands not checking what the kernel
returned. The bug is not in the kernel. The solution will be to fix
the user space programs and/or require the ext
critical
functionality and/or change results that customers/clients would be
depending on outside of the monitoring path.
On Fri, Aug 16, 2024 at 12:37 PM Chris Adams wrote:
>
> Once upon a time, Roger Heflin said:
> > Zero chance they back that out. It is not a regression in the
&
raid subsystems that have
battery backed-up caches and/or return done the moment it gets into
its cache (whether safe or not).
On Fri, Aug 16, 2024 at 1:25 PM Barry Scott wrote:
>
>
>
> On 16 Aug 2024, at 18:12, Roger Heflin wrote:
>
> So here is why sync sucks only on a usb 2.
I don't know specifically on this bug. But the 2 common mistakes fall
into some piece failing and causing dracut to not properly detect what
modules the boot device needs to use. And when that happens dracut
times out looking for root. I have also seen bugs where the
necessary module needed to
On Tue, Jan 12, 2010 at 11:22 AM, Ashley M. Kirchner wrote:
>
> We're going to split out main server up into 3, possibly more with
> backup redundancy. The basic setup will be 1 server (USER) holding
> everyone's physical account, 1 server (MAIL) which holds everyone's mail
> spool (INBOXES on
use nfs...but make sure you *read* from a nfs mount of the data and
write to local disk.
Note that to make a network filesystem safe during writing that it is
going to usually be slower, and because of that reading is
significantly faster than writing.
And in general if you are using small files
If you run firefox with one already running it tries to contacts the
current running firefox version and may try to open a tab on the
already running window, that may be the no error piece.
if you want to run 2 separated copies you need to setup another
profile and start it like this: firefox --no
I actually wanted 2 separate users that were somewhat isolated from
each other so the separate profiles was useful.
On Sun, Mar 23, 2014 at 5:10 PM, g wrote:
>
>
> On 03/24/14 03:54, Roger Heflin wrote:
> <>
>
>> if you want to run 2 separated copies you need to s
On Thu, Nov 8, 2012 at 11:54 AM, Jerome Yanga wrote:
> The anonuid/anongid are valid UID/GID.
>
> The nohide option didn't work.
>
> Here is the logs from /var/log/messages of the Fedora machine while
> the AIX machine performed a "ls".
>
> Nov 8 09:44:31 fedora1 kernel: [515749.246015] device em
On Mon, Jan 7, 2013 at 2:19 PM, Jim wrote:
> On 01/07/2013 02:23 PM, Frank Murphy wrote:
>>
>> On Mon, 07 Jan 2013 13:20:00 -0500
>> Jim wrote:
>>
>>> f17
>>>
>>> Trying to start kdump and I get this error message;
>>>
>>> Jan 7 13:16:31 localhost kdump: No crashkernel parameter specified
>>> fo
On Mon, Jan 7, 2013 at 4:01 PM, Jim wrote:
> On 01/07/2013 04:43 PM, Roger Heflin wrote:
>>
>> On Mon, Jan 7, 2013 at 2:19 PM, Jim wrote:
>>>
>>> On 01/07/2013 02:23 PM, Frank Murphy wrote:
>>>>
>>>> On Mon, 07 Jan 2013 13:20:00 -0500
&g
>> does cat /proc/cmdline show it? That appears to be what it is
>> complaining about, it is not on the current running kernel.
>
> $ cat /proc/cmdline
> BOOT_IMAGE=/boot/vmlinuz-3.5.2-1.fc17.i686
> root=UUID=cf5a1042-bb2b-4c6b-a0e0-1da27273d413 ro rd.md=0 rd.lvm=0 rd.dm=0
> SYSFONT=True KEYTABLE
On Mon, Jan 7, 2013 at 7:19 PM, Jim wrote:
> On 01/07/2013 07:55 PM, Roger Heflin wrote:
>>
>> correct grub line for
>> that kernel?
>
>
> what correct grub line for that kernel ? it is in /boot/grub2/grub.conf
>
The line that booted the current kernel did no
On Mon, Jan 7, 2013 at 8:09 PM, Jim wrote:
> On 01/07/2013 08:26 PM, Roger Heflin wrote:
>>
>> On Mon, Jan 7, 2013 at 7:19 PM, Jim wrote:
>>>
>>> On 01/07/2013 07:55 PM, Roger Heflin wrote:
>>>>
>>>> correct grub line for
>>>>
I was watching this thread, I think this may work for you (it is
working for me as of today).
This is what is in my file, I have my wireless device setup in a bond
with the wired device, so I can unplug and wireless takes over and
then plug in and it goes back to wired. I have network manager
in
Assuming you are using ifcfg-* files, there is an option called
ETHTOOL_OPTS that allows you to set various ethtool settings when the
network gets brought up.
if you need multiple settings you can do it like this "-s ${DEVICE}
advertise 00c ; "
On Sat, Aug 17, 2013 at 9:05 AM, Sam Varshavchik wr
I have recently created a new 6tb XFS filesystem.
After this gnucash, pan and a number of other utilities (on one of the
32-bit machines) start failing to work and complaining about value too
large for defined data type.
I have found someone else that indicated this ment that the tools
needed to
against each wrong
package, or give up and just reinstall the machine 64-bit...
On Sat, Aug 31, 2013 at 1:43 AM, Michael Schwendt wrote:
> On Fri, 30 Aug 2013 21:21:19 -0500, Roger Heflin wrote:
>
>> I have recently created a new 6tb XFS filesystem.
>>
>> After this gnuc
1. try inserting the card after the reader is plugged in.
2. does the reader support sdhc cards (>2gb) and if no and the card is
greater than 2gb it won't work.
On Fri, Dec 6, 2013 at 10:25 AM, Kevin Wilson wrote:
> Hello,
> I have fedore 18.
> When I insert an SD reader with an sdc card (SanDisk
If you have not installed it, install denyhosts...it watches for ssh
password attacks and locks out hosts automatically.
It does limit the number of attempts someone gets before being
completely locked out.
On Thu, Dec 19, 2013 at 11:22 AM, Mark Haney wrote:
> -BEGIN PGP SIGNED MESSAGE-
you will need to run pvscan and determine what the name of the vg is
you want to add the storage to.
to get /dev/sdb5 -> /dev/sdb4 you reworked the partition table (ie
removed the extend partition and made sdb4 a primary?).
if still lost give this info:
fdisk -l /dev/sd[ab]
pvscan
df
On Sat, D
you will need a vgextend first something like "vgextend fedora_box1000
/dev/sdb4" that will add the disk to the vg.
the df shows these 2 are mounted:
/dev/mapper/fedora_box1000-roo
t 34G 4.5G 27G 15% /
/dev/mapper/fedora_box1000-home 17G 7.2G 8.1G 47% /home
so either /dev/fedora_box10
it just wnats /dev/fedora_box1000/root or /dev/fedora_box1000/home the
lv_ is not in the name of the lv.
On Sat, Dec 21, 2013 at 4:13 PM, Bob Goodwin - Zuni, Virginia, USA
wrote:
>
> On 12/21/2013 04:26 PM, Chris Murphy wrote:
>>
>> On Dec 21, 2013, at 2:11 PM, Roger Heflin
add selinux=0 on all of the kernel lines in grub.conf...I believe this
disables it completely...and cannot be turned back on without removing
that line and rebooting...obviously if you want to enable it and got
back and use it again relabeling would need to be done.
On Sun, Dec 22, 2013 at 8:55 AM
On Wed, Jan 11, 2012 at 2:33 PM, linux guy wrote:
> Firefox is intermittently freezing from time to time in my KDE
> sessions, hanging my whole machine for 20 seconds to a minute every 20
> minutes or so.
>
> Anyone else having this problem ?
>
> $ yum list firefox
> firefox.i686
this is the daily logrotate process. it rotates the log files and
reloads httpd. It is normal. A number of other process will also
restart at the same time.
See:
cat /etc/logrotate.d/httpd
/var/log/httpd/*log {
missingok
notifempty
sharedscripts
delaycompress
postrotate
The trackballs like the Logitech M570 are pretty easy to press and
drag. Some of the ones with the ball in the middle are a lot harder
to drag with.
I use an ancient wired usb trackman marble with a scroll wheel and a
retainer that prevents the ball from running away that is around 20
years old
if you have sar installed (package is sysstat) then sar -n DEV will
give you 10 minute network counters, it will give you 1 minute data if
you turn sar's sample timer down to 1 minute.
snmp if you router supports it, and I have also ssh'ed into my router
ever X minutes and collected its network st
A guess is that the /boot that is booting the machine is not the same
/boot is the current booted OS has mounted at /boot.
So all updates are being put on a /boot that is not being used to boot
the machine, and you need to find the actual /boot that is booting the
machine and then do a dnf reinsta
echo 1 > /sys/block/sdX/device/delete
And the device should disappear.
On Thu, Jan 3, 2019 at 11:01 AM Chris Adams wrote:
>
> Once upon a time, Ian Malone said:
> > Does anyone have suggestions for easily simulating a missing volume in
> > LVM on bare metal?
>
> Actually make a volume go missin
You probably just need to determine where the temp data is going and
put a tmpfs mount in that location so it uses ram for the temporary
files you don't need to keep.
Any static files that are only being read from the usb device on boot
up will quickly get cached into ram assuming you have enough
dnf install `cat file`
On Thu, Feb 21, 2019 at 9:02 AM stan via users
wrote:
>
> On Thu, 21 Feb 2019 15:36:08 +0100
> "Patrick Dupre" wrote:
>
> > How can I make a dnf install "list of pkgs in a file"?
> >
> > I tried dnf install `file`
> >
> > but it does not work.
>
> I usually use a python sc
To have a stuck kernel version, then what you have mounted at /boot is
not what is booting your machine.
You need to find the real /boot where ever it is hiding and mount it
at /boot (and update /etc/fstab) and then do a "dnf reinstall" on each
of the kernels you want to work, and then reboot maki
If anything runs any lvm commands it will basically run a pvscan
internally and then that will also spin it up (I believe if not using
lvmetad as with lvmedad it only does a single device at a time).
On Tue, Mar 19, 2019 at 5:47 AM Ed Greshko wrote:
>
> On 3/19/19 6:35 PM, Patrick O'Callaghan wro
You are also going to have to be prepared when a kernel change happens
and causes it to no longer compile to download an updated version that
has the correct code for the new kernel.
I have a RTL8814au and it also is not in the kernel and every so often
you will need to go back to the last kernel
upgrade.
> What I didn't know is that a new version has to be downloaded every time.
> This is really a pain in the neck.
>
> What's your add-on wifi card?
>
> Ciao
>
>
> On Fri, 12 Apr 2019 20:08:01 -0500
> Roger Heflin wrote:
>
> > You are also goi
the command line xinput and xset commands claim to change point settings.
My playing with it in gnome does not seem to change anything, but I
know they used to work, so it may work if you don't have something
like gnome or xfce running.
On Fri, Apr 19, 2019 at 7:28 PM Ed Greshko wrote:
>
> On 4/
xinput seems to be interfacing with libinput and is reporting there
are devices and the devices have properties.
It it is not clear though which properties work and don't work in it
On Fri, Apr 19, 2019 at 7:58 PM Ed Greshko wrote:
>
> On 4/20/19 8:50 AM, Roger Heflin wrote:
>
.0 and
I know I have gnome set as high as I could get it.
On Fri, Apr 19, 2019 at 8:08 PM Roger Heflin wrote:
>
> xinput seems to be interfacing with libinput and is reporting there
> are devices and the devices have properties.
>
> It it is not clear though which properties work and
My 5500 appears to still be getting signal locks on the channels it
should on kernel 5.x and F29.
I tested with dtvscan and dtvsignal that came with the card and seems
to work for all dvb cards and was authored by by Jack Kelliher .
On Tue, May 14, 2019 at 12:08 PM D&R wrote:
>
> I have been us
I am using the default driver built into the kernel and it works.
I compiled those files a really long time ago, and they still work o
f29 for me, but it sounds like they may not recompile with current
headers with no changes.
On Tue, May 14, 2019 at 11:34 PM D&R wrote:
>
> Thanks for your reply
Did you check the kernel command line in grub.cfg to see what root= is
set to? That is the only place I know specifically references what
to look for on the switch root.
On Tue, Jun 4, 2019 at 10:41 AM stan wrote:
>
> Hi,
> I'm trying to clone an existing Fedora install, just a / partition and
wrote:
>
> On Tue, 4 Jun 2019 12:37:04 -0500
> Roger Heflin wrote:
>
> > Did you check the kernel command line in grub.cfg to see what root= is
> > set to? That is the only place I know specifically references what
> > to look for on the switch root.
>
> Yep,
went away when you did hostonly=no.
On Wed, Jun 5, 2019 at 12:35 AM stan wrote:
>
> On Tue, 4 Jun 2019 18:49:29 -0500
> Roger Heflin wrote:
>
> > I would check these modules in dracut: dracut --list-modules, some of
> > them are rescue and debug and a few other modules ma
Jun 2019 07:31:46 -0500
> Roger Heflin wrote:
>
> > Based on not finding bash, I would think that t may not be finding
> > your rootlv.
> >
> > That generally means either the driver for the disk controller/scsi,
> > or a critical filesystem component, or somet
the right libraries with the right checksums that
the ldd says it needed. It sounds like once you get the chroot . to
work things may work right. Something odd happened with the rsync I
would suspect.
On Wed, Jun 5, 2019 at 4:33 PM stan wrote:
>
> On Wed, 5 Jun 2019 10:14:01 -0500
> Rog
You are welcome.
On Thu, Jun 6, 2019 at 10:42 AM stan wrote:
>
> On Wed, 5 Jun 2019 18:16:44 -0500
> Roger Heflin wrote:
>
> > It sounds like once you get the chroot . to
> > work things may work right. Something odd happened with the rsync I
> > would suspe
no.
You can do excludes (dir and files/wildcards) with rsync so you might
want to look at using it instead.
On Sat, Aug 3, 2019 at 12:03 AM ToddAndMargo via users
wrote:
>
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
>
>
> Many thanks,
> -T
> __
Every device should show up in lsusb, it may not have the proper name
attached to it.
So remove the watch do an lsusb and note what you see, then connect
the watch and do a lsusb.
If you don't see any new devices at all there is some sort of USB
physical issue (bad cable, bad port, port in watch
Symbolic links missing on / (/bin->/usr/bin and such).
/bin/bash missing or corrupted.
/lib64/ libraries missing or corrupted.
systemd itself missing, pivot root attempts to run systemd and that
may be what is failing, but you don't really know what the underlying
cause is for it to fail.
What exa
Look for a video card that can decode *AND* encode and do basic processing.
I have a "crappy" low end older nvidia card, and it is about 3x faster
than an older pre-ryzen 4 core box. My card is rated at 8x encode at
1080 basic encoding. There are newer cards that are several times
faster than
1 - 100 of 713 matches
Mail list logo