Search Results

Search: Posts Made By: 1in10
Forum: What is on Your Mind? 03-26-2017
1,219
Posted By hicksd8
I'm not sure exactly what you're asking either so...
I'm not sure exactly what you're asking either so what I'm about to write may not be relevant but a way to circumvent the blocking is to configure your browser to use a proxy in the target...
Forum: What is on Your Mind? 03-26-2017
1,219
Posted By jim mcnamara
I don't get what all you are asking. But part of...
I don't get what all you are asking. But part of the answer is:
Big companies geoblock all the time.
Countries where the government does not like unreviewed content, the same occurs.
To my...
10,298
Posted By Peasant
Check : GitHub - rg3/youtube-dl:...
Check :

GitHub - rg3/youtube-dl: Command-line program to download videos from YouTube.com and other video sites (https://github.com/rg3/youtube-dl)

Those monsters are handled with python well.
10,298
Posted By Corona688
The webpage does not download the movie, which is...
The webpage does not download the movie, which is why wget doesn't get it. Flash Player downloads the movie, in a complicated rube goldberg scheme involving javascript and cookies. Sorry.
Forum: Cybersecurity 02-06-2017
8,717
Posted By zaxxon
If the modem/router is delivered/sold by the...
If the modem/router is delivered/sold by the provider and they deny support, they might lose a customer next time ;)
Anyway, I have no clue about this but you can get alternative FW for...
Forum: BSD 12-04-2016
8,160
Posted By jim mcnamara
Databases do not always store data in plain text....
Databases do not always store data in plain text. Before you clobber another file like this, consider using a set of commands to ascertain more about the file.

f=places.sqlite
file $f
ls -l $f...
Forum: IP Networking 08-21-2016
8,235
Posted By stomp
You are not connected via IANA. 224.0.0.0/4 is a...
You are not connected via IANA. 224.0.0.0/4 is a range defined and reserved by IANA for the use of Multicast-Applications. IANA is not an internet service provider but authority responsible for...
Forum: IP Networking 08-21-2016
8,235
Posted By Scrutinizer
If I do a : $ whois 224.0.0.0 # # ARIN...
If I do a :
$ whois 224.0.0.0

#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: Whois Terms of Use (https://www.arin.net/whois_tou.html)
#
# If you see...
2,108
Posted By Don Cragun
Good point. A better chance at a working script...
Good point. A better chance at a working script might be any one of the following three commands:
{ tr -cs A-Za-z\' '\n' | tr A-Z a-z | sort | uniq -c | sort -k1,1nr -k2 | head -n ${1:-25}
} <...
2,108
Posted By Don Cragun
One might guess that a current sed would work if...
One might guess that a current sed would work if you change:
sed ${1:-25}
in that pipeline to:
sed -n "1,${1:-25}p"
which would print the 1st 25 lines if no command line arguments are given to...
Forum: IP Networking 04-27-2016
2,019
Posted By Corona688
From Telemetry pings &mdash; Mozilla Source Tree...
From Telemetry pings &mdash; Mozilla Source Tree Docs 49.0a1 documentation (http://gecko.readthedocs.org/en/latest/toolkit/components/telemetry/telemetry/pings.html)



So it's the stuff sent to...
Forum: Fedora 04-03-2016
5,072
Posted By RudiC
This is not what I asked you to try. You can't...
This is not what I asked you to try. You can't mount a device to itself.
Forum: BSD 03-26-2016
23,831
Posted By hicksd8
There's quite of lot of knowledge needed to...
There's quite of lot of knowledge needed to create a bootable USB stick manually from the command line. I've forgotten more than I can remember about that because nowadays I always cheat.

Do you...
1,516
Posted By Don Cragun
That won't get the output format you said you...
That won't get the output format you said you wanted. You have an extra period in your format string. I think you want:
printf "%03d.%03d.%03d-%02d\n" $((RANDOM%1000)) $((RANDOM%1000))...
1,516
Posted By drl
Hi. If a conveniently-specified range is...
Hi.

If a conveniently-specified range is useful:
$ printf "%.3s.%.3s.%.3s-%.2s\n" $(shuf -i 1-255 -n 3) $(shuf -i 0-59 -n 1)
Resulting in, for example:
54.152.170-4
On a system like:
OS,...
1,516
Posted By Don Cragun
This runs a risk of having some one and two digit...
This runs a risk of having some one and two digit numbers followed by a comma in cases where $RANDOM expands to a value less than 100. For instance, sticking your command in a while loop for a...
1,516
Posted By Aia
Would that work? printf "%.3s.%.3s.%.3s-%.2s\n"...
Would that work?
printf "%.3s.%.3s.%.3s-%.2s\n" $RANDOM, $RANDOM, $RANDOM, $RANDOM
141.470.200-20
1,516
Posted By RudiC
What's wrong with echo $RANDOM.$RANDOM.$RANDOM ...
What's wrong with echo $RANDOM.$RANDOM.$RANDOM
31533.27416.10085?
Forum: UNIX and Linux Applications 02-17-2016
2,946
Posted By gull04
Hi, A quick and dirty fix is to make a copy...
Hi,

A quick and dirty fix is to make a copy of and then remove the metadata file using;

# > cp ${HOME}/.local/share/gvfs-metadata "new_file_name"
# > rm ${HOME}/.local/share/gvfs-metadata
...
Forum: BSD 01-09-2016
8,954
Posted By Peasant
If you are looking to see if something is...
If you are looking to see if something is listening on port 80, you were close with telnet.

telnet <ip> <port> # not <ip>/<port>


Without the port, telnet will try the default telnet port...
Forum: War Stories 11-22-2015
4,015
Posted By Peasant
How about : https://rg3.github.io/youtube-dl/ ...
How about :
https://rg3.github.io/youtube-dl/

It requires python, author claims all around unix and windows compatibility, the code is open.

Good luck!
Regards
Peasant.
1,665
Posted By Don Cragun
Having a utility (or a shell function) exit with...
Having a utility (or a shell function) exit with a non-zero value conventionally means that the script failed. And exit in a function definition exits the containing script; not just the function. ...
2,496
Posted By Aia
Currently, I do not have any way of testing the...
Currently, I do not have any way of testing the Perl rename, however I wonder if the following might work:

rename -n 's/\.(?!\w+$)//g' *.avi
or
rename -n 's/\.(?!avi$)//g' *.avi

Remove the -n...
2,496
Posted By Aia
How would you like for up.to.the.roof.avi to look...
How would you like for up.to.the.roof.avi to look after the renaming? If you say "without the dots in between", that would make it as uptotheroofavi. Is that what you meant?

The command rename...
Forum: IP Networking 09-13-2015
2,032
Posted By hicksd8
I still don't quite understand what you are...
I still don't quite understand what you are trying to do.

I am not a bsd expert but resolv.conf in generic Unix only tells the OS which DNS servers to use for name resolution.

You want a...
Showing results 1 to 25 of 38

 
All times are GMT -4. The time now is 09:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy