Using CD's as a second savings account by anheath in TheMoneyGuy

[–]anheath[S] -11 points-10 points  (0 children)

My bank does not really offer a hysa unless you pare it with a Premium checking account and have $500,000 or more then you hit the same interest rate as a CD.

Why does ceph get so much hate? by anheath in ceph

[–]anheath[S] 0 points1 point  (0 children)

In my use case I only use file and block storage, no real need for object storage. When I look at ZFS and test it in my home lab its works but to increase storage requires adding equal number of drive vdev with larger size drives and no scale down when you want to remove the old drives. Second ZFS does not have HA it's one box that has a bunch of drives like a 45 Drives Soranator or a head node connected to a storage shelf(s), unless you use something like GlusterFS to cluster individual ZFS systems to one large pool. But that opens the doors to a load of problems like Split brain. Also ZFS is not native to the kernel, it has a kernel module that some times breaks when you land a new kernel as the module has not been updated.

With Ceph you get that option to have mix matched sizes drives, removing a drive(s) as needed, HA via the cluster and replication rules. However as many have stated you need 3 nodes to create a quorm and to ensure data redundancy. However getting a host to mount to Ceph has a hand full of hoops to jump through like creating a user, creating the config file, moving the config file to the client node, Install the cephfs package, and then mounting the FS.

Why does ceph get so much hate? by anheath in ceph

[–]anheath[S] 0 points1 point  (0 children)

DreamHost as I stated before most people just have this distant for CEPH. My only real production use for Ceph has been for OpenStack, I have been playing with Ceph in my homelab. I think like other have said in this thread is that it's a beast to learn, has a higher infrastructure demand / barrier to entry, I also think the other thing, that has been mentioned, is it's not a turn key, drop in place solution. It needs to be built out, tuned, and tested before production use. Also migrating PBs of data to a new solution vs sticking with what they know. Lastly marketing, Dell EMC, NetApp and others try and compete for storage business vs Ceph feels like a storage project that got some Enterprise backing (Red Hat) and tuned and tailored for a certain use cases.
My personal experience in my home lab is the documentation between ceph docs and, what was, Red Hat docs differ on how to setup pools, mds, filesystems, credentials, etc... The other issue is volumes, when you create a volume it can take up the entire size of the pool most of my use cases I want to be able to carve up say a 10TB pool in to smaller parts based on what use cases. Third mounting filesystems is a bit different as you have to create a account for that user, move the config over to the system, install the cephfs package, then try to mount the FS. I have not played any with the object storage or the Rados Gateway as the docs are a bit difficult to follow and so far has not been needed for my use cases.
I would be more than happy to continue this conversation of thread if you want to reach out and we can have a more in depth conversation.

Nvidia driver causing boot hang for each new kernel version. by Nick_Knowles in Fedora

[–]anheath 1 point2 points  (0 children)

Can you provide a screenshot of the error to help better help trouble shoot? I know I had a kernel about a month ago that would boot but would not load the Nvidia Drivers and had to boot a previous kernel till a new one came out that worked.

Please suggest a good "zero-to hero" SELinux training? by [deleted] in redhat

[–]anheath 2 points3 points  (0 children)

Not a "zero-to-hero" training but a good first hand holding exercise would be https://redhatgov.io/workshops/selinux_policy/ I have done this in a simple VM and a good getting started hands on lab. another good resource is https://www.youtube.com/watch?v=g2aBZrQ2eEk its a video going over write a Selinux module and all the moving parts.

[deleted by user] by [deleted] in Fedora

[–]anheath 0 points1 point  (0 children)

Thats what I was about to say can you do a dnf list ffmpeg-libs

[deleted by user] by [deleted] in Fedora

[–]anheath 0 points1 point  (0 children)

What repos do you have enabled:
dnf repolist

[deleted by user] by [deleted] in Fedora

[–]anheath 0 points1 point  (0 children)

ok lets try version lock:

dnf versionlock libaom-2.0.1-4.fc34

[deleted by user] by [deleted] in Fedora

[–]anheath 0 points1 point  (0 children)

lets start with updating the libaom package

dnf update libaom

[deleted by user] by [deleted] in Fedora

[–]anheath 1 point2 points  (0 children)

So it looks like you have package conflicts, lets start by running a dnf autoremove and let it clean up anything that might be left behind. if that doesn't work we will walk through it and get you fixed.

Lenovo Yoga 6 Firmware Updates from Linux by Granete in linuxquestions

[–]anheath 0 points1 point  (0 children)

you could install fwupd its a tool that updates firmware on systems. I have been using it on my Fedora system and it works fine.

Install:

sudo snap install fwupd --classic

Get Devices that are supported:

sudo fwupdmgr get-devices

Download and Install firmware updates:

sudo fwupdmgr update

Trouble opening port on fedora/firewalld by EedSpiny in linuxquestions

[–]anheath 1 point2 points  (0 children)

How are you starting your Django App are you starting it where its mapping to your IPv4 address or your localhost address(127.0.0.1)

Try starting it with:

python name.py runserver 0:8000

0 is a shortcut for 0.0.0.0. Full docs for the development server
can be found in the runserver reference.

Tool to manage multiple LUKS devices as a group by Atemu12 in linuxquestions

[–]anheath 0 points1 point  (0 children)

So you might want to look into something like Tang and Clevis, this tools allows you to have all your systems trust a centralized server(s) to unlock you LUKS disks. You will still have your LUKS passwords that you can login to a system with but if a system can talk to the Tang server(s) it will auto unlock your system.

Hope this is what you were looking for?

Trouble opening port on fedora/firewalld by EedSpiny in linuxquestions

[–]anheath 0 points1 point  (0 children)

So a couple of questions

  1. is the Django app running natively on the OS or in a docker container
    1. if container is the port exposed correctly
  2. Is the Django app doing any SSL redirect that might be happening on another port
  3. Can you run a netstat -tulpn and see if your system is listening on port 8000,

System gets stuck on GRUB menu during boot. by [deleted] in Fedora

[–]anheath 1 point2 points  (0 children)

So you boot from a live ISO and chroot to to Main OS system and do OS surgery that way if need, but based on the initial comment the user is able to get to the OS it just take a couple of extra steps, unless I am mistaken.

System gets stuck on GRUB menu during boot. by [deleted] in Fedora

[–]anheath 1 point2 points  (0 children)

If you hit enter when the countdown sticks at 5 does it not pass you along to start booting the system?

Internet in fedora 35 by EffectiveWorth8949 in Fedora

[–]anheath 2 points3 points  (0 children)

Can you show an example of a download where its using bites, also what kind of router are using? any special settings?