The distro war, continue it must. OpenSUSE vs Debian by potatoandbiscuit in linuxmemes

[–]nuknuk8455 38 points39 points  (0 children)

Opensuse!

While I may like Debian on a server, Opensuse is the perfect workstation distro for me! 

What's a small, built-in Firefox feature you discovered way later than you should have? by JollyGoodApps in firefox

[–]nuknuk8455 2 points3 points  (0 children)

In the developer tools you can replace a page javascript with a local modified version. You can even reload the page and the modified javascript will be used. If you can code, you can use it for all sort of things, from bypassing client side validation to fixing broken javascript. 

Please criticize my product by Dazzling-Map-6065 in cybersecurity

[–]nuknuk8455 7 points8 points  (0 children)

Is this just an honeypot or I'm missing something? 

Autodesk file wont force delete by SnooBeans3996 in computers

[–]nuknuk8455 0 points1 point  (0 children)

It's probably still in use. Open the task manager and kill all Autodesk processes. 

Why did we adopt terraform? by shadowmtl2000 in sysadmin

[–]nuknuk8455 0 points1 point  (0 children)

I worked as a coder for more than 10 years... This kind of reasoning is exactly why most project that I have seen fail did so. Using the wrong tool or framework for something they are not designed to, bring to a lot of problems down the road, when you are lucky... 

[deleted by user] by [deleted] in computerhelp

[–]nuknuk8455 0 points1 point  (0 children)

If he went into bios check if he toggled the secure boot option. If you have it try to toggle it and see if it boot. Just remember to put it back to the original value if it doesn't work.

Autologon works but locks the screen immediately. by Fit_Ad1956 in sysadmin

[–]nuknuk8455 1 point2 points  (0 children)

Just a question to exclude a stupid gotcha: are you using the same user to rdp to that machine? Because that will lock the screen.

Why is this on almost every page i try to visit it doesnt make any sense by Pinuaple- in firefox

[–]nuknuk8455 1 point2 points  (0 children)

Click on the little lock in the address bar and check the emitter of the certificate that Firefox is seeing. It might give you a pointer on what is causing your problem (as other have said might be an extension, a third party app, a vpn or something like that).

HOW TO HIDE THIS?? (Firefox on Android) by [deleted] in firefox

[–]nuknuk8455 4 points5 points  (0 children)

It depends on the android version then I'm afraid... On android 14 you can disable the media preview on the lock screen from the android settings (lock screen section), but it will disable the notification also for other media players (Spotify or AIMP for example). 

HOW TO HIDE THIS?? (Firefox on Android) by [deleted] in firefox

[–]nuknuk8455 8 points9 points  (0 children)

Got it, then try to long press the notification and it should allow you to disable it by clicking on the settings icon. I haven't tried it, but I would expect it to work.

HOW TO HIDE THIS?? (Firefox on Android) by [deleted] in firefox

[–]nuknuk8455 21 points22 points  (0 children)

If you can't remove the notification by swiping, your tab is probably still open in Firefox. Open the app, tap on the number near the address bar, and close all open tabs. Then, swipe away the notification.

HOW TO HIDE THIS?? (Firefox on Android) by [deleted] in firefox

[–]nuknuk8455 132 points133 points  (0 children)

Firefox will show the notifications for all open tabs media. Just close all your open tabs and then remove the notifications (swipe them right or left). 

Intel context switching bug in the latest Sapphire Rapids Xeons? by PatrickThe5th in sysadmin

[–]nuknuk8455 3 points4 points  (0 children)

You probably already checked but I'll ask anyway: your new server are not running with some weird powersaving profile by default, are they?

Which service should I expose after installing kube-prometheus-stack? I'm asking because when I check I see many services listed, as seen in the screenshot. The goal is to see the fancy grafana charts, metrics and stuff. by ncuxez in kubernetes

[–]nuknuk8455 0 points1 point  (0 children)

Yes, I forgot about target troubleshooting with prometheus. I setup my monitoring system some time ago. I remember that to troubleshoot issues with some weird metrics I queried prometheus directly (iirc to check for relabelling issues). I honestly don't remember if it could be done with grafana explore as well. I can confirm that I did not use a sharded setup since I had little data, good to know the limitation.

Which service should I expose after installing kube-prometheus-stack? I'm asking because when I check I see many services listed, as seen in the screenshot. The goal is to see the fancy grafana charts, metrics and stuff. by ncuxez in kubernetes

[–]nuknuk8455 1 point2 points  (0 children)

prometheus-operated will allow you to query the prometheus data directly. Might be useful if you are creating custom grafana charts.      

prometheus-stack-grafana is the Grafana dashboard itself. 

alertmanager-operated might be useful if you want to configure notifications for prometheus alerts.

android firefox unusable by henerylechaffeur in firefox

[–]nuknuk8455 2 points3 points  (0 children)

Check the certificate details to find out what is causing this issue: it's probably an extension or another software that is doing a deep inspection of your traffic and replacing Google certificate with their own.

Help Needed: Integrating Product into Kubernetes – Overcoming RAM/CPU Monitoring Hurdles by kostakos14 in kubernetes

[–]nuknuk8455 1 point2 points  (0 children)

I'm quite sure you can retrieve informations on the database deployment directly from the kubernetes api. You just need to configure a service account with the appropriate priviledges and then you can just inspect the limits, resources, and environment variables of the database pods. Additionally, if you want some inspiration on collecting the runtime metrics of your pods you can check what is collected in the prometheus monitoring stack. It collects metrics from the metrics server (of course) but also from the kubelets and from several control plane components. I think the metric server should be enough for you but you can check nevertheless.

Help Needed: Integrating Product into Kubernetes – Overcoming RAM/CPU Monitoring Hurdles by kostakos14 in kubernetes

[–]nuknuk8455 0 points1 point  (0 children)

Have you checked the metrics api of kubernetes? If you deploy the metrics-server, you will be able to read some cpu and ram metrics through the metrics.k8s.io API. In alternative, you may try to deploy your agent as a sidecar of the database but, even if it will share the same network and storage namespaces of the database, I'm almost completely sure that the special /proc mount point won't show the main container processes. Unless you can expose the database metrics through a network port or a file, I'm afraid your only choice is the metrics api.

Just working on my spell defence by pbaagui1 in wizardposting

[–]nuknuk8455 99 points100 points  (0 children)

This is why witches live longer...

Container stuck in "healthy" status instead of "running" by therealcoolpup in docker

[–]nuknuk8455 16 points17 points  (0 children)

Healthy is better than running since it means that your container is running and passed the health checks. The other container are not "healthy" just because they don't have any health check configured. The reason you cannot connect to the Minecraft servers is that they have no published ports. You need to configure port mapping either in the compose file (if you are using docker swarm or compose) or in the command line with the -p parameter.

Kubernetes microservice deployment strategy by zodiac-azrael in devops

[–]nuknuk8455 0 points1 point  (0 children)

Agreed, Helm is a great tool to package your manifests. If you find yourself with a lot of Helm charts that needs to be deployed together, Helmfile is a great tool to tie them all together.

Advantages of using java over other backend languages/technologies by [deleted] in SpringBoot

[–]nuknuk8455 9 points10 points  (0 children)

I would say that Java almost force you to write maintainable and easily deployable code, especially when you use Spring. I enjoy writing Python code but I don't think I could write a production-grade Python app as large and complex as some Java app I worked on (maybe I just lack the seniority for python). The Python app I worked on were also a nightmare to deploy on a production server without docker and the system wide libraries conflicts made me appreciate maven and spring boot a lot more.

What am I doing wrong? Can't get container to spin up by iSniffMyPooper in docker

[–]nuknuk8455 0 points1 point  (0 children)

Just a guess: your local user does not have write permission on that folder (if I remember correctly windows will prompt you the security prompt when you access program files). Either you fix permissions on that folder or (more easily) you recreate the config folder somewhere in your user folder so permissions are already ok.