Forgot your password?
typodupeerror

Comment accurate title: Comcast kills streaming movies/TV (Score 1) 698

So, you start to watch a movie or TV show online. After 15 minutes, Comcast throttles you causing lower quality, stuttering, and/or buffering delays. They inflict this punishment even if they otherwise have plenty of bandwidth available.

Comcast wins in 2 ways: (1) they save a bunch of bandwidth by killing this emerging use and (2) they kill the threat this emerging use represents to their cable TV business.

Your options are (1) ditch Comcast and go with DSL if possible (noticeably - DSL rarely has the ongoing malarkey associated with cable ISPs) or (2) resort to Bit Torrents where it may not be streaming, but it is no cost, commercial free and immune to this particular harassment (Comcast will eventually "get you" with caps).

Comment Re:VM Attacks (Score 1) 413

I don't see any good solution for VAserv or their users.

Even without the death of the lead HyperVM developer the flaws could not be remedied quickly. There are apparently a lot of flaws and the time needed to fix and test each one will push out a security update for weeks if not months.

On the other hand, VAserv can not simply change to something else. Their infrastructure, experience, and services are all dependent on HyperVM. To rollout something else would take at least 6 months to get right.

Simply bringing everything back as best they can only puts them where they were before the attack - obviously vulnerable.

Comment Re:Image writing (Score 5, Informative) 283

.nrg files are .iso files with a 300kb header. I use the following simple script to convert:

#!/bin/bash
#
# Convert Nero .nrg format to .iso format.

error()
{
echo "${@}" >&2
exit 1
}

INPUT="${1}"; OUTPUT="${2}"
[ -z "${OUTPUT}" ] && OUTPUT="${INPUT%.*}.iso"

[ ${#} -ne 1 -a ${#} -ne 2 ] &&
error "Usage: $(basename ${0}) file.nrg [file.iso]"

[ ! -e "${INPUT}" ] && error "${INPUT}: file does not exist"
[ ! -s "${INPUT}" ] && error "${INPUT}: file is null"

TYPE=$(file -b "${INPUT}"); TYPE="${TYPE%% *}"

[ "${TYPE}" = "ISO" ] && error "${INPUT}: file is already in .iso format"
[ "${TYPE}" != "data" ] && error "${INPUT}: file is not in .nrg format"

dd if="${INPUT}" of="${OUTPUT}" bs=1024 skip=300

Slashdot Top Deals

The only thing worse than X Windows: (X Windows) - X

Working...