VirtualTam's bookmarks
27 bookmarks found
-
- https://github.com/PipeWire
- https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/Configuration
- https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/JACK
- https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/PulseAudio
- https://wiki.gentoo.org/wiki/Pipewire
- https://wiki.archlinux.org/index.php/PipeWire
- https://bootlin.com/blog/an-introduction-to-pipewire/
FOSDEM:
- https://archive.fosdem.org/2019/schedule/event/pipewire/
- https://archive.fosdem.org/2020/schedule/event/ema_pipewire/
Fedora adoption:
- https://fedoraproject.org/wiki/Releases/34/ChangeSet#Route_all_Audio_to_PipeWire
- https://fedoraproject.org/wiki/Changes/DefaultPipeWire
Articles:
- https://blogs.gnome.org/uraeus/2018/09/24/getting-the-team-together-to-revolutionize-linux-audio/
- https://www.collabora.com/news-and-blog/blog/2020/03/05/pipewire-the-media-service-transforming-the-linux-multimedia-landscape/
- https://www.reddit.com/r/linux/comments/9k89bm/getting_the_team_together_to_revolutionize_linux/
Troubleshooting:
-
-
Here are the steps I used to migrate a CentOS 7 VM from (presumably?) an ESXi server, to a local VirtualBox environment.
The LVM volumes were not detected at boot, and after the boot timeout, the OS fell back to the Dracut emergency shell.
- get a CentOS minimal installation CD
- check the VM's resources and peripherals:
- ensure there are no floppy drives (!)
- setup CPU and RAM resources
- check virtual drives
- add an SCSI optical drive if needed
- optional: convert the virtual drive images from VMDK to VDI
- mount the CentOS installation disc
- boot on the installation disc:
- select "Troubleshooting", then "Rescue"
- let the rescue utility detect filesystems and mountpoints
$ chroot
to the detected environment- backup files:
/etc/fstab
/boot/grub/grub.cfg
- under /boot, backup the initrd and initramfs for the current configuration (these will be overwritten)
- compare the current
/etc/fstab
with the output of$ lsblk
and$ blkid
- if needed, manually edit /etc/fstab to use the appropriate block device UUIDs, identifiers and mountpoints
- regenerate GRUB configuration:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
- if needed, reinstall GRUB:
$ grub-install /dev/sda
- rebuild initrd:
$ mkinitrd --force /boot/<initrd_image> <kernel_version>
- rebuild initramfs:
$ dracut --force <kernel_version>
- exit the chroot
- unmount the installation disc
- reboot
- optional but highly recommended: cross your fingers
- ...
- profit!
-
Command Line Heroes
2018-01-31 -
Ansible AWX & Ansible Tower Documentation
2017-09-26 -
https://www.ansible.com/blog/2013/08/05/supercharge-ansible-with-ansibleworks-awx-1-2
-
https://jpmens.net/2017/10/23/trigger-awx-job-runs-on-scm-commit/
-
https://www.jeffgeerling.com/blog/2017/ansible-open-sources-ansible-tower-awx
-
https://www.reddit.com/r/ansible/comments/6ymmny/awx_ansible_towers_upstream_open_source_project/
-
-