Compare Products, Prices & Stores For:

COMPUTERS, COMPONENTS COMPUTER ACCESSORIES, COMPUTER MEMORY, HARDWARE, INPUT DEVICES, NETWORKING, PDAs & MOBILE ELECTRONICS, SOFTWARE, STORAGE & MEDIA, DIGITAL CAMERAS, HOME AUDIO, TV& VIDEO

Google
 
Web DealDatabase.com
What are you shopping for?


Go Back   DealDatabase Forum - Deals, Freebies, and TiVo & DirecTivo Hacking > Category: NEW TiVo, DTiVo, Extraction FORUMS! > Series 1 Support

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 07-20-2003, 05:51 PM
AlphaWolf's Avatar
AlphaWolf AlphaWolf is offline
Diamond Member
 
Join Date: Jan 2002
Location: Sonoran Desert
Posts: 2,785
Killing the "error #51" nag without doing a "clear and delete everything"

This script will remove the error #51 nag that shows up when you either move a hard drive from one tivo to another, or screw with your crypto chip (e.g. change the serial number).

Note though that if you run this script, any scrambled recordings that you currently have will no longer work. This means that you should only use this script if all of your recordings were recorded with noscramble. The reason being is that the particular keys stored on your tivos hard drive that are used to match the drive with the crypto chip are also used to encrypt your recordings, hence if you delete them, new keys will be generated, and the old streams will not decrypt properly.
Attached Files
File Type: tcl 51killer.tcl (989 Bytes, 654 views)
__________________
Before PMing me: I’m not your personal tech support. If you have a question, ask in public so I don't have to repeat if somebody else asks. If you want images or slices, use emule. I will ignore all support PMs.

Sponsor a vegetarian! I have taken the pledge, how about you?

Last edited by AlphaWolf; 07-20-2003 at 08:20 PM.
Reply With Quote
  #2  
Old 07-20-2003, 05:59 PM
SR712's Avatar
SR712 SR712 is offline
Diamond Member
 
Join Date: Apr 2002
Posts: 844
Thanks.
__________________
If a goldfish should want a vacation, who would know?
Reply With Quote
  #3  
Old 07-20-2003, 07:35 PM
captain_video's Avatar
captain_video captain_video is offline
Diamond Member
 
Join Date: Feb 2002
Posts: 6,400
Another fine addition to the DDB library of useful hacks. Nice work, AW.
__________________
Please don't PM me or any other members looking for personal assistance. You'll do better by posting (after you've exhausted the search feature, of course) and taking advantage of the collective expertise of the membership instead of a single individual that may or may not be able to help you. Thank you and enjoy your stay at DDB!
Reply With Quote
  #4  
Old 08-04-2003, 05:15 PM
Stephen Stephen is offline
Senior Member
 
Join Date: Jan 2003
Posts: 106
Ok Im lost why is this... the File IS there

/var/hack# chmod +x 51killer.tcl
/var/hack#
/var/hack# ./51killer.tcl
bash: ./51killer.tcl: No such file or directory
/var/hack#
/var/hack# ls -la 5*
-rwxr-xr-x 1 0 0 989 Aug 4 21:49 51killer.tcl
/var/hack# mv 51killer.tcl 1.tcl
/var/hack# ./1.tcl
bash: ./1.tcl: No such file or directory
/var/hack# ls -la 1*
-rwxr-xr-x 1 0 0 989 Aug 4 21:49 1.tcl
Reply With Quote
  #5  
Old 08-04-2003, 05:27 PM
Hack351 Hack351 is offline
Charter Member
 
Join Date: Dec 2001
Posts: 43
too funny. I just started a thread about this. I am having the same problems as you... file is there, but it won't let me run it. I'm stumped!
Reply With Quote
  #6  
Old 08-04-2003, 05:32 PM
Stephen Stephen is offline
Senior Member
 
Join Date: Jan 2003
Posts: 106
BTW I FTPed over this file in bin mode I guess Ill try non bin mode as well
Reply With Quote
  #7  
Old 08-04-2003, 05:47 PM
AlphaWolf's Avatar
AlphaWolf AlphaWolf is offline
Diamond Member
 
Join Date: Jan 2002
Location: Sonoran Desert
Posts: 2,785
looks like I accidently uploaded it with the winderz carraige returns, just use dos2unix on it, or whatever your favorite equivalent method is.
__________________
Before PMing me: I’m not your personal tech support. If you have a question, ask in public so I don't have to repeat if somebody else asks. If you want images or slices, use emule. I will ignore all support PMs.

Sponsor a vegetarian! I have taken the pledge, how about you?
Reply With Quote
  #8  
Old 08-04-2003, 06:01 PM
Hack351 Hack351 is offline
Charter Member
 
Join Date: Dec 2001
Posts: 43
That did the trick! Thank you very much AW.
Reply With Quote
  #9  
Old 08-04-2003, 07:38 PM
JJBliss's Avatar
JJBliss JJBliss is offline
Diamond Member
 
Join Date: Jan 2002
Location: New York
Posts: 2,407
I just fixed the version that was posted at www.tivostuff.com

It now has the proper unix formatting.

It should work "out of the box" now.....

JJ
Reply With Quote
  #10  
Old 08-04-2003, 08:57 PM
Stephen Stephen is offline
Senior Member
 
Join Date: Jan 2003
Posts: 106
Thank you much worked fine for me
Reply With Quote
  #11  
Old 01-23-2004, 03:30 PM
tdavis80 tdavis80 is offline
Experienced Member.
 
Join Date: Jul 2002
Posts: 25
Hi guys, many people are having difficulty in FTPing small scripts to their TiVo.

The problem is the file becomes a DOS file instead of a Linux file. Instead of downloading some sort of dos2unx converter, try this simple suggestion....

Using Windows notepad, view the TiVo script on your PC.
Using the dropdown menus in notepad, Try [Edit], Select All, then [Edit] Copy. For those of you who like using the keyboard, it is control-a, control-c

once you have done that, use the windows telnet command to login to your TiVo. To put the file onto your TiVo, try this:

cat > your-file-name-here (hit enter and the TiVo will appear to just sit there)
Paste your text into the telnet window. If you used XP DOS/CMD to start telnet, click in the menu bar and select [Edit], paste. For Windows PowerUsers, the control-v (normal paste character) will not work.
You will see the text suddenly appear on your tivo.
Hit control-d to save the text.


example:

$ cat > 51killer.tcl
(paste text)
(control-d to save)
$ chmod 755 51killer.tcl
$ ./51killer.tcl


Hope it helps. I do it all the time, even on 'real' Unix machines. (no offense, I am simply stating that this is a common trick to get a script onto an unix machine)
Reply With Quote
  #12  
Old 07-21-2004, 04:04 PM
contemplativo contemplativo is offline
Charter Member
 
Join Date: Aug 2003
Posts: 61
Quote:
Originally Posted by JJBliss
I just fixed the version that was posted at www.tivostuff.com

It now has the proper unix formatting.

It should work "out of the box" now.....
Now that tivostuff.com is down (and I'm not getting through to pvrfiles.com's download page), is this unix formatted version otherwise available?

Also, I'm planning on swapping a drive back and forth frequently between two tivo's (the old tivo will still be used for recording unscrambled files and the new tivo for playback only). I take it I will need to run this script each time I swap the drive between tivo's, is that right?

Quote:
Originally Posted by JJBliss
use the serial cable
make it executable
I don't have a serial cable for my T60. Presumably the important thing is just to run it while it's in the Tivo itself, which can be done via telnet, for instance. In my case, the recipient tivo will not be networked and I've lost telnet on one of my drives anyway, so I would want to execute 51killer from my rc.sysinit or something, right?

Last edited by contemplativo; 07-21-2004 at 04:09 PM.
Reply With Quote
  #13  
Old 07-21-2004, 08:18 PM
SR712's Avatar
SR712 SR712 is offline
Diamond Member
 
Join Date: Apr 2002
Posts: 844
Here is a clean version. There is a handy DOS2UNIX.exe program that removes all of the windows formatting for you in a file. Search Google. Its good to keep around.

You upload it to a directory on your TiVo, and then execute it at a bash prompt with:

Code:
./51killer.tcl
then reboot your TiVo.
Attached Files
File Type: tcl 51killer.tcl (957 Bytes, 278 views)
__________________
If a goldfish should want a vacation, who would know?
Reply With Quote
  #14  
Old 07-28-2004, 09:47 PM
iwantmydtvnow iwantmydtvnow is offline
Charter Member
 
Join Date: Mar 2004
Posts: 53
Functionality with new decryption methods?

In the readme.txt of the zip file included from pvrfiles.com, there's a caution to only use this file with noscramble recordings. Can anyone advise if it functions properly with kmem & CSO decrypted recordings? Also, is there a way to save the crypto keys this file deletes, in case it somehow fails and one needs to get back the ability to play their previously recorded shows? Thanks!
Reply With Quote
  #15  
Old 01-24-2005, 10:52 PM
airf00 airf00 is offline
Charter Member
 
Join Date: Oct 2002
Posts: 50
Just tried this on a DSR6000 and after I type yes I get Not changing anything.

Tried yes YES YeS and all variations. Also made sure my disk had rw access. Any suggestions?

And this was the 2nd file listed on this thread. Not the 1st one which was dos.

-----

Edited to say:
Did some searching and found out the terminal window XP was adding some characters or something. Ran the script from the serial port and it worked. Rebooting now to see if the 51 nag is gone.

Last edited by airf00; 01-24-2005 at 11:05 PM.
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:31 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright 2000-2008 © dealdatabase.com.
TiVo® is a registered trademark of TiVo Inc. This site is not affiliated with TiVo Inc.