#admin

tina@diaspora.psyco.fr

Warning.

Wow wow. Qui est Emily Fox, au profil muet (sauf celui de 4 tags sous son pseudo : "Watch. My. Secret. Video", et à qui je dois plus de quarante notifications ce matin, principalement des "likes", cliqués à la file ?
Parkinson ? Spam ? Racolage ? IA ?...

Merci de répondre à ce post, @emilyii99@diaspora-fr.org, si tu as quelque chose à dire...

#question #admin #diaspora

anonymiss@despora.de

#Hacker gains #admin #control of #Sourcegraph and gives free access to the masses

source: https://arstechnica.com/security/2023/09/pii-leaked-after-sourcegraph-an-ai-driven-service-for-code-development-is-hacked/

The hacker gained administrative access by obtaining an authentication key a Sourcegraph developer accidentally included in a code published to a public Sourcegraph instance hosted on Sourcegraph.com. After creating a normal user Sourcegraph account, the hacker used the token to elevate the account privileges to those of an #administrator. The access token appeared in a pull request posted on July 14, the user account was created on August 28, and the elevation to admin occurred on August 30.

#hack #api #security #cybercrime #internet #news #software

taz@pod.geraspora.de

#share or be #square: Die #taz-EDV sucht ab sofort eineN

GNU/Linux/Unix-Administratorin

Die #taz war 1994 die erste #online lesbare #Tageszeitung Deutschlands. Sie bietet nach wie vor alltäglich die Möglichkeit, Dinge anders zu machen und ist immer noch #Konzern-unabhängig. Das soll so bleiben – mit dir.

Der #Job

Willst Du mit uns die zunehmend digitale #Zukunft des #Journalismus gestalten? Wir bieten ein kooperatives Umfeld, das Raum für Weiterentwicklung und Kreativität lässt, aber auch strategisches Denken erfordert und die Bereitschaft, alltägliche Probleme auch eigenverantwortlich zu lösen.
Es geht hierbei um vor allen Dingen um das #Backend für die #Auslieferung unserer digitalen Abos.

Wir suchen zeitnah ein:e Kolleg:in mit praktischer #Berufserfahrung in der #Administration von #Debian - #Linux - #Systemen.

Wenn Du #Lust darauf hast, in einem nach wie vor politisch motivierten Umfeld als Teil des EDV-Entwickler:innen-Teams auch abteilungsübergreifend mit vielfältig interessanten Menschen, mit #Produktentwicklung, #EDV, #Redaktion und #Verlag zusammenzuarbeiten, melde Dich.


Was Du mitbringen solltest:

  • #Linux, aber auch #Mac, #Windows und #Server-Virtualisierung (VMware, LXC) sind Dir vertraut?
  • Du kennst zum Lösen von Softwareproblemen mehr als eine Programmiersprache?
  • Neben kraftvollen Einzeilern auf der Cmdline gehört auch das Pfadfinden im Admin-WebGUI zu deinem Repertoire?
  • Du weißt, dass das Internet mehr als nur #SMTP und #HTTPS ist?
  • Du bist kommunikativ, teamfähig, improvisationsfreudig, kannst selbstständig Prioritäten setzen und triffst bei der Betreuung von EndanwenderInnen den richtigen Ton?
  • Du glaubst an das Projekt einer alternativen Tageszeitung?
  • Du hättest vier oder fünf Tage in der Woche Zeit für uns und kannst alle sechs Wochen einen Sonntagsdienst übernehmen?

Auch wenn du nicht alle dieser Anforderungen erfüllst, bist vielleicht gerade du die ideale Ergänzung für das EDV-Service-Team der taz.


Was wir Dir bieten

Es handelt sich um eine unbefristete #Vollzeitstelle 36,5 h/Woche, 30 Tage Urlaub) ab taz-Lohngruppe VI.
Es ist #Teilzeit oder eine #Stellenreduzierung nach der Einarbeitungsphase möglich.
Bei der taz bieten wir dir ein kollegiales und familienfreundliches Arbeitsumfeld mit flexiblen Arbeitszeiten. Teilweise ist auch Remote-Arbeit möglich, allerdings nicht ausschließlich.
Darüber hinaus kannst ein ordentliches (und subventioniertes) #Mittagessen in der taz #Kantine genießen und von Mitarbeiter:innen-Rabatten im taz Shop sowie dem JobRad-Programm profitieren.


Deine Bewerbung

Schicke uns deine #Bewerbung und zeige uns, welche #Kenntnisse und #Erfahrungen Du gerne bei der taz entfalten würdest.
Arbeitsaufnahme zum nächstmöglichen Zeitpunkt. Schreibe uns gerne, ab wann Du einsteigen könntest.
Richte Deine Bewerbung bitte an: adminjob@taz.de
Wir wollen diverser werden. Deshalb freuen wir uns besonders über Bewerbungen von People of Color, Menschen mit Migrationsvorder- oder Hintergrund, LGBT-Personen und Menschen mit Behinderung. Deine Perspektiven sind uns wichtig und sollen in der taz vertreten sein. Im modernen taz Neubau sind alle Arbeitsplätze und viele Toiletten weitestgehend barrierefrei. Die taz Kantine ist mit dem Rollstuhl bequem erreichbar.

#jobs #arbeit #IT #admin-job #admin #stellenangebote #presse #journalismus

me@nerdpol.ch

#bash #Help > Delete a Folder in all #BTRFS snapshots.

So my server ran full, and it has years of snapshots, i actually do not want to delete, however i spotted (with the amazing ndcu) some 500GB of Backups i do not need. So i want to delete them.

apparently to do this you need to set each snapshot to writable and delete the file/folder you want. (see https://www.suse.com/support/kb/doc/?id=000019594)

they have also a script there doing this in a handle able manner. however it is only for Files and not for Folders. But i need to delete Folders. Ideally i want to be ably to provide the path to it so i do not delete some identically named folders elsewhere.
I tried to adapt the script but i do not quiet understand it.

original script
```
file=$1

while read a
do snapshot=$(echo ${a%%/$file})
btrfs property set $snapshot ro false
rm -f $a
btrfs property set $snapshot ro true
done < <(find /.snapshots/ -name $file)

**question 1:**
what does this line exactly do?

do snapshot=$(echo ${a%%/$file})
```
question 2
in what way/order does this "< <" syle of conding feed the paths to the loop?

because this (my for folders adapted test script)

file=$1 
while read a
         do snapshot=$(echo ${a%%/$file})
echo "$snapshot snpsho"
          # btrfs property set $snapshot ro false
           #rm -rf $a ## delete command adapted for folders
                echo "foundet $a"
           #btrfs  property set $snapshot ro true
         done < <(find /home/ -type d -path $file) ## find command adapted for folders and paths


this does not give me any output, altough the find command on its own totally does

rant

also why, do we still not have tools that do make sense with btrfs filesystems. like:
- gui option in filemanager to delete a file/folder though all spanshots
- gui option in filemanager to easily compare/resore older versions of a file. (like windows)
this should be quiet easy and would be heavily helpfull...

#linux #btrfs #shell #community #snapshot #storage #admin

aktionfsa@diasp.eu

07.03.2023 Baldiger Bürgermeister in rechtsradikaler Facebook-Gruppe?

"Mit EU-Chatkontrolle hätten ...

... wir ihn schon vor der Berliner Wahl erwischt." Diese Hoffnung haben wir nicht, denn wir wissen, dass die von der konservativen EVP Fraktion aber auch von vielen Sozialdemokraten verlangten Überwachung aller unserer Kommunikation im Internet sicher nichts bringt, außer ein Mehr an Überwachung. Alle unsere Argumente gegen eine EU-weite Chatkontrolle gibt es hier https://www.aktion-freiheitstattangst.org/cgi-bin/searchart.pl?suche=Chat&sel=meta

Dass der Berliner CDU Spitzenkandidat nun als Mitglied in einer rechtsradikalen Facebook-Gruppe erwischt wurde, bleibt ein Zufall. Genau, wie viele andere nicht erwischt werden oder wenn wieder andere fälschlicherweise denunziert werden. Gerade letztere, die sogenannten False Positives, sind in der Regel die Opfer, weil sie Beweise für ihr "Nicht-Tun" erbringen müssen - eine Umkehrung der Unschuldsvermutung.
Überführt oder nicht?

Auch diese Frage führt nicht viel weiter, denn man könnte ja aus investigativen Gründen Mitglied so einer Gruppe werden wollen, um die wirklichen "Extremisten" zu entlarven. Fest steht, dass Kai Wegener selbst keine Beiträge in der Gruppe gepostet hat, lediglich ein Like gab es von ihm für einen Beitrag seines Parteikollegen Burkard Dregger zu einem Polizeieinsatz in der Rigaer Straße aus dem Mai 2019. Vielleicht sollte man sich dessen Äußerungen genauer ansehen?

Die taz führt in ihrem Artikel zum Thema noch 2 entlastende Argumente an, die man auch im Rahmen der Internet-Überwachung und im Nachhinein zu den Berufsverbotsverfahren stets im Kopf behalten sollte.

Die Gruppe könnte "sich erst im Laufe der Jahre über den 'erlaubten Rahmen' hinaus radikalisiert" haben, was wenig aktive Mitglieder nicht mitbekommen haben könnten.
Im Internet lassen sich die Namen der Nutzer beliebig verwenden und es war möglicherweise ein Fake der Gruppe, so bekannte Namen, wie Kai Wegener oder Hamburgs Verkehrssenator Anjes Tjarks von den Grünen oder René Domke, Landesvorsitzender der FDP in Mecklenburg-Vorpommern in ihren Reihen nennen zu können.

Gegen das letzte Argument spricht allerdings ein Satz aus dem taz Artikel: Bis 2021 war er [Kai Wegener] aber sogar als einer von 18 Ad­mi­nis­tra­to­r:in­nen und Mo­de­ra­to­r:in­nen gelistet, wie ein Sprecher der Berliner CDU bestätigte.

Wie auch immer, für uns bleibt es bei unserer Forderung von letzter Woche "Stopp für eine Politik von gestern!" - insbesondere gerichtet an die SPD, die unter Frau Giffeys Führung mit einem 29€-Ticket links blinkt und dann vorsätzlich und ohne Not rechts abbiegt.

Mehr dazu bei https://taz.de/Kai-Wegner-in-rechter-Facebook-Gruppe/!5916396/
Kategorie[21]: Unsere Themen in der Presse Short-Link dieser Seite: a-fsa.de/d/3sR
Link zu dieser Seite: https://www.aktion-freiheitstattangst.org/de/articles/8328-20230307-baldiger-buergermeister-in-rechtsradikaler-facebook-gruppe.htm
Link im Tor-Netzwerk: http://a6pdp5vmmw4zm5tifrc3qo2pyz7mvnk4zzimpesnckvzinubzmioddad.onion/de/articles/8328-20230307-baldiger-buergermeister-in-rechtsradikaler-facebook-gruppe.htm
Tags: #Chatgruppe #Admin #Rechtsaußen #CDU #SPD #EU #Chatkontrolle #FalsePositives #Unschuldsvermutung #Big5 #GAFAM #Google #Amazon #Facebook #Apple #Microsoft

montag@friendica.xyz

Hi #admins, please do not #block the whole instance right away, the #admin has already reacted and deleted the profiles.

They are all hobby projects and sometimes the hobby admins can't respond immediately. Especially not in a country that is at war.

#fediblock


InsiderUA - 2023-02-23 13:49:22 GMT

❗ ❗ ❗ Thank you, all, for a report on the account with the name Hitler – the account was suspended,

As a moderator, I have checked the account (in fact three accounts were created today) – most likely it is part of Russian hybrid warfare as accounts pretended to be Ukrainians, but digital traces (the interface is Russian, Russian naming of other accounts, Russian hostname while IP location is in Warsaw)

Please, be careful, and thanks, for reporting!
#mastodon #Russia #Ukraine
Bild/Foto
Bild/Foto

bkoehn@diaspora.koehn.com

It took way too long, but my #ChatOps quest continues. Today I finished adding #Matrix support to my #Dovecot Sieve scripts, so that things like #DKIM and MTA-STS TLS reports could go to a matrix chat channel rather than sitting in a mail folder. Basically I now have an email 👉️ matrix bridge.

It took a fair amount of fussing about, mostly because (a) it takes matrix commander (a Matrix CLI) a long time to post a message to Synapse (read: more than ten seconds), (b) Dovecot’s documentation for altering settings for external scripts is byzantine, and (c) rather than cramming matrix commander into my already bloated Dovecot #Docker image I wanted to use the Docker image they provide, and I needed to work out a way to invoke matrix-commander from another container on the same pod.

But now it’s done, and I have another vector for #admin alerts that I can coalesce into a single place for easy review.

montag@friendica.xyz

Hallo #Admins, ich habe gerade das hier in meine Instanz-Blockliste eingefügt:

  • skinheads.*

Bis jetzt betrifft es die Instanzen skinheads . social, skinheads . uk, skinheads . eu, skinheads . io.

Ich weiß, dass die Skinhead Kultur nicht nur aus Nazis und Faschos besteht, aber in den lokalen Timelines dieser Instanzen sind mir eindeutig zu viele Hakenkreuze und zu viel rassistischer Mist.

#Admin #fediblock #swastika

me@nerdpol.ch

#Debian, #Raid, #grub, unattended AARGH!!

So, does anyone else has the problem/experience/tipps when: - I have a Debian 10 server with Raid 1 - unattended Security update. And EVERY TIME so far when i did the regular updates, and then did a reboot, my GRUB got broken, leading to a non-booting server? (which so far atm im not even able to fix..)

last time the was an official issue.
this time i couldn´t find anything. - i actually thought that i have checked that there is no grub update going on before rebooting, but then it still failed.

i tried to boot debian 11 (unfortunately) and in rescue mode, attaching the array, and installing grub again into both of the boot-drives seperately which altered the boot failure but it still did´t boot. (just recently recognized it was the not the matching debian 10 rescue system...)

apart from the immedeate problem: is there anything i can/need to config for debian to behave corretly on kernel/grub updates if iam using a software-raid?

#help #linux #boot #admin

anonymiss@despora.de

What #Mastodon #server could I #choose?

It's a real #problem you don't know much about the #administration of the servers. A Mastodon server could be a "Trojan Horse" to get your data. Now that they are leaving #Twitter many new servers appear and many admins will close their server next year again because it's too expensive or too much #work.

So here are some points you can check:

  • Don't go to #fosstodon because I am there. Choose fosstodon only if most of the ther points of this list fitt your needs.
  • The donain of the server shouldn't include "Mastodon" because most of the new users search their server via #Google. If they all choose servers with "Mastodon" inside of the #domain it's against #decentralization and the servers are soon overcrowded with much work for the administration.
  • Check the server #information and #background. It's better to choose a server operated by a #community and not a single person. The server should have been only before the #hyoe because not many of the new servers will survive one year.
  • Check the domain. It should be #cool and fitting to the spirit of your posts.
  • Check the servers blocked on your server. Don't choose a server where nothing is blocked because then you know there is no #moderation on your server. If right wing servers are not blocked you are maybe choosing a server of a right echo chamber. If your server is blocked on many others there is something wrong with the administration.
  • At the end its the best to open your own server and be your own #admin. But don't forget that Mastodon isn't running properly on a raspberry pi. The server needs money and time for updates and moderation. So think of donating to your server if possible.
  • Learn about the #Fediverse. You are here on #Diaspora and now you think about going to Mastodon because Elon #Musk is killing Twitter. But why should you go to Mastodon only because the #press #filterbubble is talking about it? Maybe you can be wiser than all the lemmings out there and learn something first with a search engine of your #trust. With #Friendica you can post to the Fediverse and read it on Diaspora and Mastodon.
  • At the end it would be nice if you can follow me on Mastodon: https://fosstodon.org/@anonymiss - @anonymiss@fosstodon.org :)

Please let me know what you think in the comments and thank you for reading :)


#knowledge #wisdom #internet #instructions #news #software #education #help #todo #tutorial #advice #privacy #security #online #communication #trend #trending #ElonMusk #economy #corporation #freedom #donate #alternative #blog #microblogging #microblog

tux@anonsys.net

#til Auf einer meiner #Proxmox VM mit #Ubuntu ist mir der Speicherplatz vollgelaufen. Also die VM runtergefahren, die die Festplatte vergrößert und mit #GParted den neuen leeren Speicherplatz der Partition zugewiesen.
Allerdings habe ich mich gewundert, dass nach einem Neustart der VM immer noch zu wenig Speicherplatz in der VM angezeigt wurde und die neuen zusätzlichen 20 GB nicht angezeigt wurden.
Nach einer Recherche im Forum von Proxomox war mir dann klar warum. Ich musste noch mit sudo lvresize --extents +100%FREE --resizefs /dev/mapper/ubuntu--vg-ubuntu--lv den neuen freien Speicherplatz der Partition zuweisen.
Jetzt läuft wieder alles so wie es soll. 👍
#Linux #Admin #til

jml@pod.orkz.net

Hi Diaspora community! I haven’t been around for some years, but I always kept this pod running because I liked to support the project with the spare resources we had. The Vereniging ORXNet supplied the hardware and internet connection for the server. Many thanks to them!

Everything was running on spare resources, but they are now being repurposed. Also, I don’t have the time anymore to relocate and maintain the server, so time is up for pod.orkz.net unfortunately! I was considering colocating here http://pauperhosting.nl/ * , but after good reviewing I decided not to ;) (Dutch joke)

Starting next week, no more backups will be created of #pod.orkz.net. It will shut down on the 15th of january 2023.

You can export your (profile)data in your settings.

It was great to be able to host this pod for this long. I hope you find a good alternative place to hang out!

Best wishes!

Jelle & Vereniging ORXNet

  • seriously, all Dutch viewers should read the entire site ;)

#pod #orkz #admin #shutdown #diaspora #orxnet #2023

andre_henze@pod.geraspora.de

Großartiger Vortrag! #IT #Admin #Fremdsprachen #Rubberducking #Logs-lesen #storage #Netzwerk #Zertifikate #http #SSO #MobileDevices #root #RSS-Abo

Checkliste für Universaldilettanten – A jack of all trades is a master of none, but oftentimes better than a master of one.

Die VerwalterInnen der menschlichen Ressourcen suchen daher gerne so genannte "T-Shaped-Professionals". Der senkrechte Strich des T symbolisiert dabei das Spezialwissen, während der Querstrich das Breitenwissen darstellt.

Stoeps und leyrer erzählen aus dem Nähkästchen von (in Summe) über 60 Jahren IT Erfahrung, welche Themen aus ihrer Sicht in dem den Querstrich nicht fehlen sollten.

Selbsterständlich stellt die Auswahl der Themen nur eine Auswahl dar, sollte dir aber einen Überblick geben, was alles notwendig ist, um zwischen KundInnen, ManagerInnen, Herstellern, (Frontend-) EntwickerlInnen, Netzwerk-, Storage-, Betriebssystem-, Middleware-, Datenbank-, Dev(Sec)Ops-, Security und vielen weiteren Teams zu vermitteln.

Die VerwalterInnen der menschlichen Ressourcen suchen daher gerne so genannte "T-Shaped-Professionals". Der senkrechte Strich des T symbolisiert dabei das Spezialwissen, während der Querstrich das Breitenwissen darstellt.

Stoeps und leyrer erzählen aus dem Nähkästchen von (in Summe) über 60 Jahren IT Erfahrung, welche Themen aus ihrer Sicht in dem den Querstrich nicht fehlen sollten.

Selbsterständlich stellt die Auswahl der Themen nur eine Auswahl dar, sollte dir aber einen Überblick geben, was alles notwendig ist, um zwischen KundInnen, ManagerInnen, Herstellern, (Frontend-) EntwickerlInnen, Netzwerk-, Storage-, Betriebssystem-, Middleware-, Datenbank-, Dev(Sec)Ops-, Security und vielen weiteren Teams zu vermitteln.

via FrOSCon

danieldoubet@diaspora.koehn.com

Will update #nota404mn Diaspora pod to latest version and take a backup as it is long overdue. I am also _temporarily _ enabling registrations as I see lot's of user's "losing" their pods. #podmin #admin @Daniel Doubet @danieldoubet (backup)