VirtualTam's bookmarks
70 bookmarks found
-
- https://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git
- https://stackoverflow.com/questions/1057564/pretty-git-branch-graphs
- https://stackoverflow.com/a/25468472
- https://chrisfreeman.github.io/gitdags_install.html
- https://zwischenzugs.com/2018/03/08/create-your-own-git-diagrams/
- https://hub.docker.com/r/imiell/gitdags/
- https://github.com/ianmiell/gitdags/tree/master/examples
-
NPM, Yarn and private repositories
2018-06-08 Hosting private repositories and using them in CI/CD:
- https://docs.npmjs.com/private-modules/intro
- https://docs.npmjs.com/private-modules/ci-server-config
- https://docs.npmjs.com/private-modules/docker-and-private-modules
Threads:
- https://stackoverflow.com/questions/45191189/nexus-manager-npm-401-unauthorized
- https://stackoverflow.com/questions/40845598/how-do-i-use-multiple-npm-registries-in-yarn
- https://github.com/yarnpkg/yarn/issues/606
- https://github.com/yarnpkg/yarn/pull/839
- https://github.com/yarnpkg/yarn/pull/871
- https://github.com/yarnpkg/yarn/issues/4451
- https://github.com/yarnpkg/yarn/issues/4862
- https://github.com/npm/npm/issues/16528
Articles:
node-sass binaries:
- https://github.com/sass/node-sass#binary-configuration-parameters
- https://github.com/sass/node-sass/releases
- https://github.com/sass/node-sass/issues/1466
- https://github.com/sass/node-sass/issues/1554
- https://github.com/sass/node-sass/issues/1635
- https://github.com/sass/node-sass/issues/1991
- https://github.com/sass/node-sass/issues/2115
- https://github.com/sass/node-sass/issues/2361
- https://stackoverflow.com/questions/40178767/is-it-possible-to-install-node-sass-without-downloading-from-github-during-the-p
-
-
Proxmox: Networking, Firewall, Security
2018-05-15 - https://pve.proxmox.com/wiki/Network_Configuration
- https://pve.proxmox.com/wiki/Firewall
- https://pve.proxmox.com/wiki/Fail2ban
- https://forum.proxmox.com/threads/how-to-implement-fail2ban-on-host.3583/
- https://forum.proxmox.com/forums/proxmox-ve-networking-and-firewall.17/
- https://myatus.com/p/guide-firewall-and-router-with-proxmox-extending-its-us/
- https://www.kiloroot.com/secure-proxmox-install-sudo-firewall-with-ipv6-and-more-how-to-configure-from-start-to-finish/
- https://blog.waccabac.com/gestion-du-pare-feu-de-proxmox-ve-4/
-
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!
-
- https://github.com/ranger/ranger
- https://github.com/ranger/ranger/wiki/Official-user-guide
- https://bloerg.net/2012/10/17/ranger-file-manager.html
- https://www.digitalocean.com/community/tutorials/installing-and-using-ranger-a-terminal-file-manager-on-a-ubuntu-vps
- https://wiki.archlinux.org/index.php/Ranger
-
Fonts - ArchWiki
2018-03-17 - https://wiki.archlinux.org/index.php/Font_configuration
- https://wiki.archlinux.org/index.php/Metric-compatible_fonts
- https://wiki.archlinux.org/index.php/Microsoft_fonts
- https://www.reddit.com/r/archlinux/comments/5r5ep8/make_your_arch_fonts_beautiful_easily/
- https://www.reddit.com/r/archlinux/comments/2diqx8/what_font_packages_do_you_usually_install/
-
PowerShell Survival Kit
2018-03-07 Home:
- https://docs.microsoft.com/en-us/powershell/
- https://docs.microsoft.com/en-us/powershell/scripting/getting-started/fundamental/using-windows-powershell-for-administration?view=powershell-6
Wikiversity:
- https://en.wikiversity.org/wiki/PowerShell
- https://en.wikiversity.org/wiki/PowerShell/Variables
- https://en.wikiversity.org/wiki/PowerShell/Arrays_and_Hash_Tables
- https://en.wikiversity.org/wiki/PowerShell/Loops
Basics:
- https://stackoverflow.com/questions/1825585/determine-installed-powershell-version
- https://stackoverflow.com/questions/8343767/how-to-get-the-current-directory-of-the-cmdlet-being-executed
- https://superuser.com/questions/237902/how-can-one-show-the-current-directory-in-powershell
- https://stackoverflow.com/questions/6138849/how-do-you-move-files-folders-across-volumes-with-powershell
Commands and executables:
HTTP:
ZIP archives:
- https://serverfault.com/questions/18872/how-to-zip-unzip-files-in-powershell
- https://stackoverflow.com/questions/27768303/how-to-unzip-a-file-in-powershell
- https://www.reddit.com/r/PowerShell/comments/454e4y/how_do_i_unzip_a_zip_file_with_powershell/
- https://github.com/auberginehill/unzip-silently
- To extract silently: https://github.com/auberginehill/unzip-silently/blob/master/Unzip-Silently.ps1#L352
-
Apache Ivy ™
2018-03-05 -
Jenkins & .Net
2018-02-06 - https://plugins.jenkins.io/msbuild
- https://jenkinsheaven.blogspot.fr/
- https://blog.alexellis.io/continuous-integration-docker-windows-containers/
- https://asmagin.com/2017/05/02/jenkins-on-docker-for-net-projects/
- https://developers.redhat.com/blog/2016/09/05/how-to-install-and-configure-jenkins-to-build-net-apps-on-red-hat-enterprise-linux/
- https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites
- https://www.pgs-soft.com/cross-platform-application-using-net-core-jenkins-docker/
- https://stackoverflow.com/questions/27725236/jenkins-net-build-server
- https://blog.couchbase.com/continuous-deployment-with-jenkins-and-net/
-
GRUB dual-boot considerations
2018-01-05 -
- https://www.linuxquestions.org/questions/linux-software-2/difficulty-installing-adobe-shockwave-player-4175562367/
- https://www.linuxquestions.org/questions/linux-software-2/is-there-a-way-to-open-dcr-files-with-linux-4175604206/
- https://forums.adobe.com/thread/149027
- https://askubuntu.com/questions/229628/how-can-i-get-shockwave-flash-to-work-on-ubuntu-12-04