PDA

View Full Version : bufferhack_enable="NO" in dflt_sysinit



Phred
27-01-2007, 11:36 AM
I believe that during hard disk build I selected the Installer option to increase the live buffer to 60 minutes. When looking around in dflt_sysinit (I'm dangerous Peter.. lol) I noticed:

bufferhack_enable="NO" # Start bufferhack
bufferhack_size="60" # 60 minute bufferhack buffer size

Is my live buffer 60 minutes or not? Do I need to change _enable="NO" to _enable="YES" (of course in sysinit.conf not in dflt..) ?

Cheers,
Phred

Darren King
27-01-2007, 02:36 PM
Is my live buffer 60 minutes or not?

What happens when you watch live TV? Can you rewind 60 minutes or only 30?

petestrash
27-01-2007, 04:41 PM
dflt_sysinit.conf will always have 'NO" set.

The correct way to enable it is to have "YES" set in sysinit.conf.

But there are other ways to do it.

So do as Darren has suggested, and if it is not on then make the change to sysinit.conf.

Peter.

Phred
28-01-2007, 07:00 PM
What happens when you watch live TV? Can you rewind 60 minutes or only 30?

Sheepishly he says,, doh! Yes I do have a 60 minute buffer..

Phred

daggo
04-02-2007, 08:50 PM
How does one edit /etc/dflt_sysinit.conf when I don't have /etc/sysinit.conf?

In VI when editing /etc/dflt_sysinit.conf I am told it is "File is readonly" after I ":wq" so I can't mod it.

I'd like to start tserver and increase the buffer.

Thanks

petestrash
04-02-2007, 09:26 PM
rw
cp /etc/dflt_sysinit.conf /etc/sysinit.conf
chmod 777 /etc/sysinit.conf
vi /etc/sysinit.conf
{make the changes}
ro
reboot

Peter.

daggo
04-02-2007, 11:03 PM
Done, done & done.

Thank-you.