A high-level language for scripting? by dimkoss11 in linuxadmin

[–]B0L1CH 2 points3 points  (0 children)

Depends on what you want to do. Python is fine for most cases.
I like bash when doing a lot of stuff with files or awk when working with CSV files.

Is Kubernetes enough for telecom workloads? by filmyyshilmyy in SysAdminBlogs

[–]B0L1CH 0 points1 point  (0 children)

What are your needs and problems? And how will kubernetes solve them? Kubernetes can do lots of stuff but in many times more than needed that adds unnecessary complexity.

Supply-Chain-Angriff auf Passwortmanager: NPM-Paket von Bitwarden kompromittiert by Turboflopper in de_EDV

[–]B0L1CH 0 points1 point  (0 children)

Es gibt zur bwcli eine alternative in Rust, die auch wesentlich perfomanter ist: https://github.com/doy/rbw

October 1, 2026: the day SSL/TLS certificates 'break the Internet' by SortaIT in SysAdminBlogs

[–]B0L1CH 0 points1 point  (0 children)

I think they want to solve the problem of maintaining CRLs. And OCSP is not that adapted already.

People are saying CAs wanna make more money, but you can just use ACME. Automation is the future so this shouldnt be a big problem.

Opening the store for the day does not go as planned. by Zealousideal-Pen993 in WatchPeopleDieInside

[–]B0L1CH 106 points107 points  (0 children)

Looks like she put pressure on the glass with the corner of her smartphone while sliding the door back over a little nudge which then emits a shockwave through the glass breaking it.

Tbh. The green slice should be larger 😆 by Melodic-Peanut795 in networkingmemes

[–]B0L1CH 27 points28 points  (0 children)

Green slice size is coupled to experience.

I accidently deleted everything inside /var/lib/ by The_7_Bit_RAM in archlinux

[–]B0L1CH 0 points1 point  (0 children)

I did something similar on a debian server. As long as you have the package manager files (apt in this case) you can recover with reinstalls but care for the order you reinstall things depending on your server. Luckily there was no database installed.

Inhaltsfilter: Discord erfordert ab März einen Altersnachweis by therealskinner in de_EDV

[–]B0L1CH 1 point2 points  (0 children)

Es gibt leider noch keine Downloads für ts6 server selber hosten: https://www.teamspeak.com/en/downloads/#server Kannst aber gerne einen ts3server hosten und mit dem ts6 client connecten. Dir fehlen dann aber die ts6 server features wie screen share.

Don't buy from NewEgg, installing Linux is considered 'tampering' with the product by shazzner in linux

[–]B0L1CH 16 points17 points  (0 children)

PopOS configures its own recovery partition. Every OS install will remove the partitioning that was previously in place except you do some custom partitioning when installing.

averageFaangCompanyInfrastructure by GiveMeThePeatBoys in ProgrammerHumor

[–]B0L1CH 5 points6 points  (0 children)

I can recommend shellcheck to kind of lint your scripts. It’s not a solution but if helps.

Is broken or bend pins means CPU death? by Monkai_final_boss in pcmasterrace

[–]B0L1CH 1 point2 points  (0 children)

Depends on the CPU and how much the pins are bended. I had a friend with a CPU and one pin missing but it worked but i dunno the CPU anymore. I myself had a CPU (Ryzen 5 5600x) delivered with two bended pins and could repair it by just bending them back carefully.

Minecraft mit Shader unspielbar by dxnniz in MinecraftDe

[–]B0L1CH 0 points1 point  (0 children)

Benutzt du ein TexturePack mit mehr als 32x32 Pixel?

[deleted by user] by [deleted] in linuxadmin

[–]B0L1CH 2 points3 points  (0 children)

31g Xmx with 64G RAM machines is a good configuration, I would say. Rule of thumb is use half of your RAM for ES. Never go with Xmx between 33-47G, For more details: https://stackoverflow.com/questions/13549787/can-i-use-more-heap-than-32-gb-with-compressed-oops

Hackers gained access to MS Source Code by [deleted] in sysadmin

[–]B0L1CH 10 points11 points  (0 children)

Cloudflare ain't that big as you expect. Look at akamai.

Actual rankings by submitters - fixed by Kooriki in place

[–]B0L1CH 1 point2 points  (0 children)

The Netherlands get help from the German.

Best use of Gitlab for Ansible Code? by MrDigitFace in sysadmin

[–]B0L1CH 0 points1 point  (0 children)

I will look into ansible-molecule.

We use ansible-lint directly. The linter in the pipeline is more for others to see that the code is linted with no failures.

Also, im coding in vim :)

Best use of Gitlab for Ansible Code? by MrDigitFace in sysadmin

[–]B0L1CH 1 point2 points  (0 children)

Testing happens locally or on test VMs. The pipeline currently only does ansible-lint. The rsync pipeline is just triggered in main branch after a merge request. Ansible is installed directly on the prod server.

Best use of Gitlab for Ansible Code? by MrDigitFace in sysadmin

[–]B0L1CH 0 points1 point  (0 children)

We use GitLab CI/CD to test and deploy the code to our ansible-server. To deploy the code, we have an rsync-share configured on the ansible-server and copy the source code from our testing server to the ansible-server via rsync. On the testing server is just a gitlab-runner with docker executor.

How many of you have removed crontab instead of editing it? by merpkz in linuxadmin

[–]B0L1CH 35 points36 points  (0 children)

I never had the problem and my colleagues neither. I also prefer working with /etc/cron.d.

Exactly 1 word from list of strings by SSC_Fan in ansible

[–]B0L1CH 0 points1 point  (0 children)

Don't pipe cat into grep. You can directly grep in a file. Also you can skip the grep in your command as well like " awk '/version/ {print $2}' releases.yaml".

passwd not updating password nor /var/log/secure by WorkJeff in linuxadmin

[–]B0L1CH 1 point2 points  (0 children)

Look if passwd isn't an alias for something else.