Indeed that, and definitely not fading eyesight (!), might explain why soldering appears to be so much harder now. Where might one find proper non-RoHS solder?
Can you show the content of /mod/boot/irmode? Say, ls -l it, then cat it if the size is not 0 (or, unlikely, very large), or hexdump -C it if the cat output is meaningless.
I was thinking of that as collateral damage, but there could be an additional utility, or maybe an --unprotect-recycle-bin option to trm, that would allow deleting from the bin and could be called from Webif to delete binned files when the displayed directory is the bin or one of its...
Ah, because there's no state we don't know whether we're in a single delete or a recursive sequence or whatever, and we can't ban bin entries or they'd never get deleted?
Might it be possible to have some global flag (environment var, or /mod/etc/undelete.lock file, etc) that the delete hook...
If you are happy to get into the shell command line, through Webshell, telnet or SSH, you can find the ffmpeg process and kill it (pkill ffmpeg). That will cause the job to fail.
Otherwise, restarting the box will definitely stop job 21 and cause it to restart (there are.more extreme solutions...
Another possibility is that the ffmpeg run is hanging for lack of memory. The same solution would apply.
For more details you need to look at the relevant entries in qtube.log.
One thing that can happen is that the queued command gets stuck at the ffmpeg run to fix the AAC bitstream, which runs out of memory and crashes (or the OS does and kills it), causing the queue to restart the command. Picture issues may also accompany this.
Adding a virtual memory paging file...
I can see how that would be useful but it arguably falls outside the clipboard metaphor, or (say) what macOS Finder or Windows Explorer offer (when I last checked).
That lib is installed with libssl1.1 package. A new-ish Debian system here comes with libssl3 and also has the earlier version, not that I've tried any stripts with it.
Are you saying that undelete is missing from the Installed list but still showing in Settings, or that it's also missing from the Available list so that you can't [re-]install it?
Either way, you can try to re-install using the 'Force re-install' option in the Diagnostics Webif page.
You might...
I meant that the RTS hook keeps the in-memory schedule data in line with changes to the schedule in the DB(s). Restoring channels, favourite groups are another step, I guess.
HD Fox-T2: some sort of reset that led to No channels, rather than the Factory wizard, on the next restart. Presumably just the channel DB got trashed rather than whatever wider set of DBs forces the wizard.
The symptom that caused me to restart was no ability to pause/rewind the live...
Will there always be exactly a single space between the not-space group and the underscore-group?
Emacs and Netscape hacker (now SF nightspot proprietor) Jamie Zawinski said that someone who thinks regular expressions will solve a problem then has two problems. I would say that applies much...
A non-greedy match finds the shortest match rather than the longest. But if what is wanted is to strip any initial str1_str2_, then ^([^_]+_){2} matches that very thing, ie (start of string)(twice:(multiple non-_)_):
$ echo "a1_b2_c3"|sed -rn "s/^([^_]+_){2}//;p"
c3
$ echo "a1_b2_c3_d4"|sed -rn...
As, according to G, this error code has never been seen in the context of Python opening a web connection, -v may help to show what's going on. It may be easier to run the command in a shell rather through qtube.
You can increase or make infinite the --socket-timeout ... but I'd say the default 600s ought to be plenty. Actually the --retries ... (there's --fragment-retries ... too) is only used in fetching the media data, although an extractor could implement its own retry mechanism using the same...
There is a default retry count of 10 for things that the code expects to be resolved by retrying. A timeout on connecting is, IIRC, not one of those.
Maybe we need to stop sending ancient UA strings in case iPlayer is blocking certain old UA strings. A random UA from a list made up when...
Indeed that, and definitely not fading eyesight (!), might explain why soldering appears to be so much harder now. Where might one find proper non-RoHS solder?
Can you show the content of /mod/boot/irmode? Say, ls -l it, then cat it if the size is not 0 (or, unlikely, very large), or hexdump -C it if the cat output is meaningless.
I was thinking of that as collateral damage, but there could be an additional utility, or maybe an --unprotect-recycle-bin option to trm, that would allow deleting from the bin and could be called from Webif to delete binned files when the displayed directory is the bin or one of its...
Ah, because there's no state we don't know whether we're in a single delete or a recursive sequence or whatever, and we can't ban bin entries or they'd never get deleted?
Might it be possible to have some global flag (environment var, or /mod/etc/undelete.lock file, etc) that the delete hook...
If you are happy to get into the shell command line, through Webshell, telnet or SSH, you can find the ffmpeg process and kill it (pkill ffmpeg). That will cause the job to fail.
Otherwise, restarting the box will definitely stop job 21 and cause it to restart (there are.more extreme solutions...
Another possibility is that the ffmpeg run is hanging for lack of memory. The same solution would apply.
For more details you need to look at the relevant entries in qtube.log.
One thing that can happen is that the queued command gets stuck at the ffmpeg run to fix the AAC bitstream, which runs out of memory and crashes (or the OS does and kills it), causing the queue to restart the command. Picture issues may also accompany this.
Adding a virtual memory paging file...
I can see how that would be useful but it arguably falls outside the clipboard metaphor, or (say) what macOS Finder or Windows Explorer offer (when I last checked).
That lib is installed with libssl1.1 package. A new-ish Debian system here comes with libssl3 and also has the earlier version, not that I've tried any stripts with it.
Are you saying that undelete is missing from the Installed list but still showing in Settings, or that it's also missing from the Available list so that you can't [re-]install it?
Either way, you can try to re-install using the 'Force re-install' option in the Diagnostics Webif page.
You might...
I meant that the RTS hook keeps the in-memory schedule data in line with changes to the schedule in the DB(s). Restoring channels, favourite groups are another step, I guess.
HD Fox-T2: some sort of reset that led to No channels, rather than the Factory wizard, on the next restart. Presumably just the channel DB got trashed rather than whatever wider set of DBs forces the wizard.
The symptom that caused me to restart was no ability to pause/rewind the live...
Will there always be exactly a single space between the not-space group and the underscore-group?
Emacs and Netscape hacker (now SF nightspot proprietor) Jamie Zawinski said that someone who thinks regular expressions will solve a problem then has two problems. I would say that applies much...
A non-greedy match finds the shortest match rather than the longest. But if what is wanted is to strip any initial str1_str2_, then ^([^_]+_){2} matches that very thing, ie (start of string)(twice:(multiple non-_)_):
$ echo "a1_b2_c3"|sed -rn "s/^([^_]+_){2}//;p"
c3
$ echo "a1_b2_c3_d4"|sed -rn...
As, according to G, this error code has never been seen in the context of Python opening a web connection, -v may help to show what's going on. It may be easier to run the command in a shell rather through qtube.
You can increase or make infinite the --socket-timeout ... but I'd say the default 600s ought to be plenty. Actually the --retries ... (there's --fragment-retries ... too) is only used in fetching the media data, although an extractor could implement its own retry mechanism using the same...
There is a default retry count of 10 for things that the code expects to be resolved by retrying. A timeout on connecting is, IIRC, not one of those.
Maybe we need to stop sending ancient UA strings in case iPlayer is blocking certain old UA strings. A random UA from a list made up when...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.