TiVo Community
TiVo Community
TiVo Community
Go Back   TiVo Community > Underground Playground > TiVo Underground
TiVo Community
Reply
Forum Jump
 
Thread Tools
Old 12-31-2005, 03:16 PM   #1
Jimilu
Registered User
 
Join Date: Mar 2005
Posts: 15
Stuck on powering up

Hi, i followd the unguide instruction and got stuck on welcome...powering up.

i thing th problem is that i erased some line on rc.sysinit.author and did not take the precation on backing up the oriignal author.

This is my author:
#!/bin/bash

export TIVO_ROOT=""

export MFS_DEVICE=/dev/hda10

export PATH=./:.:/utils:/bin:/sbin:/tvbin:/tivobin:/busybox

# start telnet

tnlited 23 /bin/bash -login &

# start ftp

tivoftpd

# Enable Serial bash

/bin/bash </dev/ttyS2&> /dev/ttyS2&

# add two static routes so the tivo doesn't phone home (stops breakage)

route add -host 204.176.49.2 gw 127.0.0.1

route add -net 204.176.49.0 gw 127.0.0.1 netmask 255.255.255.0

Is something missing?
Jimilu is offline   Reply With Quote
Old 12-31-2005, 03:18 PM   #2
Gunnyman
Peekols
 
Gunnyman's Avatar
 
Join Date: Jul 2003
Location: Greenville SC
Posts: 27,735
welcome powering up as a stuck point almost always indicates a botched kernel copy step.
What kind of Tivo do you haave and which kernel did you use?
__________________
It's a sociological cornucopia of silliness.
Gamertag: GGwallen
Gunnyman is offline   Reply With Quote
Old 12-31-2005, 03:26 PM   #3
Jimilu
Registered User
 
Join Date: Mar 2005
Posts: 15
Thanks for the the answer

I have a rca dvr 40 and i used the 3.1.5 kernel from the ptv cd.
I did not get an error message when i copied the kernel and unzipped it. In fact i reapeted the steps twice. i am doing all the steps again.
i have no idea what to do

Last edited by Jimilu : 12-31-2005 at 03:32 PM.
Jimilu is offline   Reply With Quote
Old 12-31-2005, 03:46 PM   #4
Gunnyman
Peekols
 
Gunnyman's Avatar
 
Join Date: Jul 2003
Location: Greenville SC
Posts: 27,735
scratch your plans and just use the zipper at
http://www.mastersav.com/tivo_zipper.html
much much easier!
__________________
It's a sociological cornucopia of silliness.
Gamertag: GGwallen
Gunnyman is offline   Reply With Quote
Old 12-31-2005, 04:02 PM   #5
Jimilu
Registered User
 
Join Date: Mar 2005
Posts: 15
Looks intresting, can i use my existing drive (its a backup) i was using it before i tryed to hack it without succes.
Jimilu is offline   Reply With Quote
Old 12-31-2005, 04:03 PM   #6
Gunnyman
Peekols
 
Gunnyman's Avatar
 
Join Date: Jul 2003
Location: Greenville SC
Posts: 27,735
Quote:
Originally Posted by Jimilu
Looks intresting, can i use my existing drive (its a backup) i was using it before i tryed to hack it without succes.
yes
you can hack an in place 6.2 image or start from scratch. Your choice.
__________________
It's a sociological cornucopia of silliness.
Gamertag: GGwallen
Gunnyman is offline   Reply With Quote
Old 12-31-2005, 04:08 PM   #7
Jimilu
Registered User
 
Join Date: Mar 2005
Posts: 15
how can i get the image from the tivo hd? I would like to keep the shows or should i buy instant cake?
Jimilu is offline   Reply With Quote
Old 12-31-2005, 05:38 PM   #8
Gunnyman
Peekols
 
Gunnyman's Avatar
 
Join Date: Jul 2003
Location: Greenville SC
Posts: 27,735
Quote:
Originally Posted by Jimilu
how can i get the image from the tivo hd? I would like to keep the shows or should i buy instant cake?
you can use mfsrestore (details available from hinsdale's site) or use instantcake if you don't care about losing recordings.
What I would do is just zipper the drive you attempted the unguide on.
It will FIX what went wrong.
__________________
It's a sociological cornucopia of silliness.
Gamertag: GGwallen
Gunnyman is offline   Reply With Quote
Old 01-20-2006, 12:29 AM   #9
SohoTrader
Registered User
 
Join Date: Jan 2006
Posts: 6
Will the zipper work my TIVO Series 2 (SA) Single drive


I've the same problem after I upgraded my TiVO S2 SA after I hacked my original kernal with the following statements:

#

cd /mnt
mkdir hack
cd hack
mkdir kernels
cd kernels
cp /cdrom/s2_kernels/4.0.1a/vmlinux.px.gz .
gunzip vmlinux.px.gx
mv vmlinux.px newkernel.px

If you have a different software version, pick an different kernel.
# Use tpip to update the kernel

tpip -k newkernel.px -o oldkernel.px.bak /dev/hd?

after that I went my TIVO went LALA Lend..

#

This will create the "hacked" kernel that will avoid the "initrc" checks.
# Create the rc.sysinit.author file to start a telnet daemon.
We're now going to create an /etc/rc.d/rc.sysinit.author file. This file is called near the end of startup to allow TiVo to debug the system. We're going to add our modifications to this file

# Mount the root partition
cd
umount /mnt
mount /dev/hd?4 /mnt
cd /mnt/etc/rc.d
vi rc.sysinit.author

Then add this to the file:

#!/bin/bash
PATH=/bin:/sbin:/var/hack:/tivobin:/tvbin
TIVO_ROOT=
MFS_DEVICE=/dev/hda10
IGNOREEOF=1000
export PATH TIVO_ROOT MFS_DEVICE IGNOREEOF
echo Turning off firewall ... >& /dev/console
[ -x /etc/netfilter-disable ] && /etc/netfilter-disable
echo Enabling telnet daemon ... >& /dev/console
tnlited 23 /bin/bash -login >& /dev/console &

* Line 2 sets the path correctly for future hacks
* Line 3-5 are needed for mfs_ftp (And it's hda10, regardless)
* Line 7 disables the firewall if it is enabled
* Line 9 starts the telnet daemon.

Then, you need to make it executable

chmod 755 rc.sysinit.author


After that my TIVO went to LALA Land.... So, What Can I do so I can make some progress,,

BTW, Gunnyman... I sent you a private msg....

[COLOR=DarkOrange]One More Thing, I bought PTVupgreade Universal CD to do my upgrade..[/color]
__________________
Over & Out

SoHoTrader....

Last edited by SohoTrader : 01-20-2006 at 12:50 AM.
SohoTrader is offline   Reply With Quote
Reply
Forum Jump




Thread Tools


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

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

Advertisements

TiVo Community
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
vBulletin Skins by: Relivo Media
(C) 2013 Magenium Solutions - All Rights Reserved. No information may be posted elsewhere without written permission.
TiVoŽ is a registered trademark of TiVo Inc. This site is not owned or operated by TiVo Inc.
All times are GMT -5. The time now is 07:00 PM.
OUR NETWORK: MyOpenRouter | TechLore | SansaCommunity | RoboCommunity | MediaSmart Home | Explore3DTV | Dijit Community | DVR Playground |