luthis

joined 2 years ago
[–] luthis@lemmy.nz 2 points 2 months ago

My money is on doing nothing at all is enough for them to royally screw up.

[–] luthis@lemmy.nz 3 points 2 months ago (1 children)

That was my first thought, but these are algorithmically/procedurally driven, not AI driven. Which makes them highly reliable, configurable, and consistent. Unlike AI machines which will hallucinate cup holders everywhere that are too large or too small to hold any actual cup.

[–] luthis@lemmy.nz 5 points 2 months ago

Ah I see. Well it's like the old saying goes, "I'd rather pay a ton of money to get AI robots to fuck everything up really badly and then go back to paying workers a barely livable wage, than pay workers a livable wage in the first place and not waste a ton of money."

[–] luthis@lemmy.nz 7 points 2 months ago (2 children)

They've figured out how to convert AI outputs into electricity??

[–] luthis@lemmy.nz 3 points 1 year ago* (last edited 1 year ago)

Lutris can be pretty handy for many things..

I don't have too much exp with these things, but I would suggest (as an IT support person) narrowing down and isolating problems into specifics, like:

  • I need dot.net for x thing and I tried y thing and it didn't work.

You'll be able to get better answers. I'm pretty interested in the suggestions, my usual solution is 'find something open source that is not as good but works.'

[–] luthis@lemmy.nz 7 points 1 year ago

There should be an app or something for this..

[–] luthis@lemmy.nz 1 points 1 year ago

I... actually can't tell if you're taking the piss or if that's a real episode.

I have so many questions about the whales.

[–] luthis@lemmy.nz 13 points 1 year ago (7 children)

Tarballs are not built from source?

[–] luthis@lemmy.nz 21 points 1 year ago (17 children)

I have heard multiple times from different sources that building from git source instead of using tarballs invalidates this exploit, but I do not understand how. Is anyone able to explain that?

If malicious code is in the source, and therefore in the tarball, what's the difference?

[–] luthis@lemmy.nz 6 points 1 year ago

Apple will make you pay for anything apparently

[–] luthis@lemmy.nz 14 points 1 year ago

Ah thanks, that's my problem, it's me.

 

This makes no freakin sense to me, and it's driving me bonkers. Censored for work purposes obv.

Hosts file:

1.1.1.1 site.com

$ping site.com

PING site.com (1.1.1.1)

^C

$ping http://site.com

ping: unknown host http://site.com

What?? Ping, You JUST RESOLVED site.com, why can't you resolve it now??

Why does the addition of the protocol break DNS resolution?

It's CentOS 6.10, quite old..

/etc/nsswitch has:

hosts: files dns

Any pointers would be much appreciated.

 

Might be late to the party, but I just discovered you can do this. Super simple and easy to do.

After having a read of the linked page, I backed up and just used this option:

https://wiki.archlinux.org/title/Profile-sync-daemon

Installed, created config, and enabled service:

systemctl --user enable psd.service systemctl --user enable psd-resync.service

I definitely notice an increase in speed and less SSD usage should hopefully increase lifespan.

I'm sure there would be options for alternative distros, anything using Systemd should be able to use the daemon.

 

But what if they hit the brown note?

 

Any explanation on how this happens?

Access: 2023-12-14 07:57:28.376736001 +1300 Modify: 2023-12-14 07:50:20.783207177 +1300 Change: 2023-12-14 07:51:57.413989824 +1300 Birth: 2023-12-14 07:51:57.413989824 +1300

Just as a matter of curiosity

 

cross-posted from: https://lemmy.nz/post/4294116

I have a file with content like this:

item({
     ["attr"] = {
        ["size"] = "62091";
        ["filename"] = "qBuUP9-OTfuzibt6PQX4-g.jpg";
        ["stamp"] = "2023-12-05T19:31:37Z";
        ["xmlns"] = "urn:xmpp:http:upload:0";
        ["content-type"] = "image/jpeg";
     };
     ["key"] = "Wa4AJWFldqRZjBozponbSLRZ";
     ["with"] = "email@address";
     ["when"] = 1701804697;
     ["name"] = "request";
});

I need to know what format this is, and if there exists a tool in linux already to parse this or if I need to write one myself?

Thanks!

 

cross-posted from: https://lemmy.nz/post/4034332

Not sure what I'm doing wrong here, I'm using this image:

https://hub.docker.com/r/bitnami/wordpress-nginx

I updated the compose file to have un/pw for mariadb:

  mariadb:
    image: docker.io/bitnami/mariadb:11.1
    volumes:
      - '/etc/docker/mariadb-persist:/bitnami/mariadb'
    environment:
      - ALLOW_EMPTY_PASSWORD=no
      - MARIADB_USER=admin
      - MARIADB_PASSWORD=admin
      - MARIADB_DATABASE=bitnami_wordpress

But I get this error:

2023-12-03 19:03:02 3 [Warning] Access denied for user 'admin'@'172.18.0.3' (using password: NO)

using password: NO??

 

Good morning all, in today's episode of "What I learned during work hours"...

I was playing around with wxHexEditor and realised that if something catastrophic happened, I would really struggle with any data recovery if I lost the inode tables for any drive.

A quick duckle pointed me to e2image, which says in the man:

It is a very good idea to create image files for all file systems on a system and save the partition layout (which can be generated using the fdisk -l command) at regular intervals


at boot time, and/or every week or so.

I couldn't find any prebuilt solutions for this online, so I wrote a systemd service and timer to do this for me. I save the fdisk to a text file, run e2image on a couple drives, and compress it all together in a dated 7z that can get uploaded via rsync or Mega or Dropbox etc.

The metadata image from a 500gb drive is 8gb, but compresses down to 40mb. Backup takes a couple minutes.

~~Unfortunately this does not work with my raid drives, but they are RAID1 so already resilient.~~

Apparently I was being a derp somehow. ...Anyways,

My RAID drives are 16TB, e2image of this is 125gb, and 7z'd it comes down to just 63mb.

I'll post the service, timer, and backup script in a comment, let me know if you can spot anywhere for improvements!

 

Someone tell me if there is a better way to do this, but I don't see how.

I needed a way to see which services I have enabled that I have manually stopped.

There oddly isn't a way to do this in one command, so I had to take the output of list-unit-files 'enabled', and use that to filter for 'list-units'. The command is here:

alias sysstop='systemctl list-units --state=failed,dead,exited $( systemctl list-unit-files --state=enabled --type=service | awk "/.*\.service/ {print }" )'

So now I can remember that I need to restart mariadb and nginx at some point:

$ sysstop
  UNIT                                 LOAD   ACTIVE   SUB    DESCRIPTION                                             
  blueman-mechanism.service            loaded inactive dead   Bluetooth management mechanism
  mariadb.service                      loaded inactive dead   MariaDB 11.2.2 database server
  NetworkManager-wait-online.service   loaded active   exited Network Manager Wait Online
  nginx.service                        loaded inactive dead   A high performance web server and a reverse proxy server
  systemd-homed-activate.service       loaded active   exited Home Area Activation
  systemd-networkd-wait-online.service loaded active   exited Wait for Network to be Configured

My other aliases are here, in case anyone finds these helpful. I use them frequently myself.

alias sysdis='systemctl list-unit-files --type=service --state=disabled'
alias sysdisuser='systemctl list-unit-files --type=service --state=disabled --user'
alias sysen='systemctl list-unit-files --type=service --state=enabled'
alias sysenuser='systemctl list-unit-files --type=service --state=enabled --user'
alias sysfail='systemctl list-units --type=service --state=failed'
alias sysrun='systemctl list-units --type=service --state=running'
alias sysrunuser='systemctl list-units --type=service --state=running --user'
alias sysstatic='systemctl list-units --type=service --state=static'
 

Will we all be fucked or is there a Linus 2?

 

Just to clarify, I'm talking about thousands of torrents across hundreds of different directories.

 

cross-posted from: https://lemmy.nz/post/825036

What is this called? A banglink?

Anyway, I want to banglink a post.

I know I can banglink a community: !environment@aussie.zone

But what about for this post?

https://aussie.zone/post/132034

I tried several different ways but none worked:

!aussie.zone/post/132034

!aussie.zone/c/environment/post/132034

!environment@aussie.zone/post/132034

!environment/post/132034@aussie.zone

view more: next ›