Community Discussions
Explore the latest discussions and community conversations related to this domain.
shell - What does "/bin/sh -c nice run-parts --report /etc/cron.daily" mean? - Unix & Linux Stack Exchange
Main Post: shell - What does "/bin/sh -c nice run-parts --report /etc/cron.daily" mean? - Unix & Linux Stack Exchange
run-parts: failed to stat component /etc/cron.daily/netdata-updater: No such file or directory
Main Post: Hi. On Ubuntu 20.04, I have installed the agent, then decided to uninstall it. I followed the instructions. Now, every day, I am getting: run-parts: failed to stat component /etc/cron.daily/netdata-updater: No such file or directory Which tells me something wasn’t cleaned completely. Does anyo…
Top Comment: Now, every day, I am getting: run-parts: failed to stat component /etc/cron.daily/netdata-updater: No such file or directory Which tells me something wasn’t cleaned completely. Does anyone know the steps I could take, or which program is attempting to run this particular cron?
Linux run-parts not working with php files - Stack Overflow
Main Post: Linux run-parts not working with php files - Stack Overflow
cron for user root /usr/bin/run-parts /etc/cron.daily 1> /dev/null - General Support - Unraid
Main Post: cron for user root /usr/bin/run-parts /etc/cron.daily 1> /dev/null - General Support - Unraid
shell - How to stop run-parts(/etc/cron.daily) - Stack Overflow
Main Post: shell - How to stop run-parts(/etc/cron.daily) - Stack Overflow
Running monsters with multiple parts
Main Post:
I'm planning on running a Kraken against a level 20 party in my next session. Obviously, this wouldn't really do much if I used a normal MM Kraken. I was just going to bump it's stats up, but then I had another idea, one that would make the fight a lot more interesting.
I was already planning on this kraken being bigger than the average kraken. So I had a thought. What if instead of being a single entity, I tracked the different parts of this kraken individually, with their own HP and everything. The way I'm imagining it, they would end up being more like three or four creatures, only attached to a singular "head" entity.
Does anyone have experience doing something like this? Anyone have any thoughts on this? Any tips?
Top Comment:
The Angry GM did a couple of articles about this, which gave me some great ideas for this kind of monster design. I recommend you start here, with the Two-headed-two-tailed Bifurcated Snake: https://theangrygm.com/return-of-the-son-of-the-dd-boss-fight-now-in-5e/
Dark Urge body parts run
Main Post:
I'm thinking of playing a Dark Urge run where I collect every possible severed body part. Stuff like skulls, bones and ribcages don't count. I'm talking hands, heads, legs, torso's, ect.
My question is what body parts are there to find? Here are some I already know about:
Karlachs head
Gale's hand
The clowns torso (Probably other parts too)
The 5 hands from the assassin
I'm pretty sure there are random parts lying around, especially in act 3.
Top Comment: I'm thinking of playing a Dark Urge run where I collect every possible severed body part. Stuff like skulls, bones and ribcages don't count. I'm...
Worse parts about Tom king's Batman Run so far
Main Post:
Basically the title, although the series isn't over and there's always ways for Tom King to run the book into the ground even further, I was wondering what people thought has been this books worst moments. For me its when he just straight up punches Tim after he questions batman current state of mind.
Top Comment:
-“Cat” “Bat”
-one son bullshit
-“meow”
-the start of Ric
-Gotham Girl
-Bruce punching Tim and no one acknowledging it
-Also killing off Alfred and probably going to bring him back in some awful way
-One more edit haha, but also that King implies that Bruce’s happiness only relies on Selina like the rest of his family doesn’t exist.
run-parts: /usr/share/netfilter-persistent/plugins.d/15-ip4tables exited with return code 1
Main Post:
On Debian 9 i installed iptables-persistent package (apt install iptables-persistent) since the OS is too stupid to allow simple saving of iptables rules to persist reboot (from other OS i used "service iptables save"). But after running stupidly named command (different from package name - not "iptables-persisent save" but "netfilter-persistent save"), i seen an error that does not give me as a noob any clue how to fix it and the search engine also does not show anything to me. Error:
# netfilter-persistent save
run-parts: executing /usr/share/netfilter-persistent/plugins.d/15-ip4tables save
run-parts: /usr/share/netfilter-persistent/plugins.d/15-ip4tables exited with return code 1
run-parts: executing /usr/share/netfilter-persistent/plugins.d/25-ip6tables save
run-parts: /usr/share/netfilter-persistent/plugins.d/25-ip6tables exited with return code 1
# iptables -v
i see nothing relevant in kern.log, syslog, dmesg. Possibly it is soft error, yet confusing.
iptables v1.6.0
How do i fix it please?
Top Comment: $ apt-cache search netfilter-persist
iptables-persistent - boot-time loader for netfilter rules, iptables plugin
netfilter-persistent - boot-time loader for netfilter configuration
$ apt-get -y --print-uris install netfilter-persistent | fgrep http
'http://deb.debian.org/debian/pool/main/i/iptables-persistent/netfilter-persistent_1.0.4+nmu2_all.deb' netfilter-persistent_1.0.4+nmu2_all.deb 8792 MD5Sum:21d5062d484609e7e758dae01f97f358
$ wget -qN http://deb.debian.org/debian/pool/main/i/iptables-persistent/netfilter-persistent_1.0.4+nmu2_all.deb
$ ar p netfilter-persistent_1.0.4+nmu2_all.deb data.tar.xz | xz -d | tar -tf - | fgrep bin/netfilter-persistent
./usr/sbin/netfilter-persistent
$ ar p *.deb data.tar.xz | xz -d | tar -xf - ./usr/sbin/netfilter-persistent
$ $ file usr/sbin/netfilter-persistent
usr/sbin/netfilter-persistent: POSIX shell script, ASCII text executable
$ head -n 1 usr/sbin/netfilter-persistent
#!/bin/sh
$
It's a /bin/sh shell script. Run it under /bin/sh with the -x (execution trace) option, e.g.:
# /bin/sh -x /usr/sbin/netfilter-persistent saveThat will show you what that program executes, as it executes. But from the diagnostics already, looks like you may know a fair part of that, and it would appear to be failing (exiting/returning non-zero) on /usr/share/netfilter-persistent/plugins.d/15-ip4tables and /usr/share/netfilter-persistent/plugins.d/25-ip6tables, so you may likely need/want to do similar with those ...
$ ar p netfilter-persistent_1.0.4+nmu2_all.deb data.tar.xz | xz -d | tar -tf - | grep 'ip[46]tables'$ ls -d /usr/share/netfilter-persistent/plugins.d/*ip[46]tables
ls: cannot access '/usr/share/netfilter-persistent/plugins.d/*ip[46]tables': No such file or directory
$
Not sure where those /usr/share/netfilter-persistent/plugins.d/*ip[46]tables files come from off-hand - not easily spotting 'em in the package or anything else I have installed. In any case, you can probably do similar - use the file(1) command to determine what type of program they are. If they're some type of interpreted program, can generally look at the first line to determine the particular program. And depending on the program, can typically run it with some type of tracing or debugging, to determine what it's doing ... and typically see where it's failing - or at least further narrow that down and follow the trail. For most shells, e.g. Bourne-like/sh/bash/dash/ash ... can generally use the -x option for execution trace. For perl, can run it under perl's debugger, ... procedures vary for other interpreted languages. If it's a binary, one can use strace(1) - but that generally gets a fair bit more complex to follow/trace/debug (system calls - and often quite voluminous output).
How bad are the run down parts of henderson?
Main Post:
I'm talking east of boulder & lake mead where all the old & gross looking buildings are.
Thinking of moving down there from green valley to be a little closer to work, but I'm from europe so I'm not very good at judging american neighborhoods yet. (it's just so different here)
I know that boulder is basically tweaker highway, but I'm not sure how bad it is down in the henderson end and I'd really appreciate some local input. Thanks!
Top Comment: If you're talking about far east of boulder and lake mead, it gets nicer where Lake Las Vegas is. Otherwise that intersection and area is undergoing a lot of growth for the better, but it still has a long way to go.
You can run wires under parts!
Main Post: You can run wires under parts!
Top Comment:
Hold tab and you can even route the wires without moving the components on top!
Kahl Junk Run Mission || Locations
Main Post:
Map Status: Completed (as far as I know)
Marked Locations: Genstamps, Helion Pack, Passwords, Password Cache , Ostron, Somachord, Thumper Parts
Missing Locations: Archgun, Drahks, Somachord, Sprag, Thumper Parts
Current Map:
Version 1.2 of Junk RunExplanation: I thought it might come in handy, and I will update and add more locations, as I go. If someone got screenshots of other locations that I missed, including the minimap / overlay map, feel free to post them in the comments. I will update the map over time to include every possible location.
Also sorry if I post this after the actuall Junk Run week but it took me a lot of time to frankenstein the map and find as many locations as possible. The frankensteining took me about 12+ hrs over the past days so you guys can have a mostly good quality map. I didn't include locations that I couldn't confirm with a screenshot so some locations might be missing, but as written above, provide me with proof and I add it. Hope you guys appreciate the effort I try to put into this.
Not blaming anyone, just thought people prefer to have a clean zoomable picture. I added my name to it to claim credit for my work, efforts and time spend in making this.
Edit:
Due to some private matters I won't be able to add everything this week. I will add them when I get time.
Credits:
Other Reddit Map: https://www.reddit.com/r/Warframe/comments/xi0yrz/veilbreaker_junk_run_mission_all_challenge/
Top Comment: Why the hell is the map so big for a slow ass character