Help….

Forum for questions and support relating to the 1.25.x releases only.
Locked
tibetfreedom
Posts: 163
Joined: Fri Oct 22, 2010 11:21 am

Help….

Post by tibetfreedom »

hi,
I need to undo the damage this set of commands caused on a debian Squeeze box…


echo "/opt/libjpeg-turbo/lib" > /etc/ld.so.conf.d/libjpeg-turbo.conf && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/ffmpeg.conf && \
echo "LD_LIBRARY_PATH=/usr/local/lib:/opt/libjpeg-turbo/lib:$LD_LIBRARY_PATH" >> /etc/bash.bashrc && \


What should I do to undo this stuff, it is causing the system to kernel panic all the time…
tibetfreedom
Posts: 163
Joined: Fri Oct 22, 2010 11:21 am

Re: Help….

Post by tibetfreedom »

tibetfreedom wrote:hi,
I need to undo the damage this set of commands caused on a debian Squeeze box…


echo "/opt/libjpeg-turbo/lib" > /etc/ld.so.conf.d/libjpeg-turbo.conf && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/ffmpeg.conf && \
echo "LD_LIBRARY_PATH=/usr/local/lib:/opt/libjpeg-turbo/lib:$LD_LIBRARY_PATH" >> /etc/bash.bashrc && \


What should I do to undo this stuff, it is causing the system to kernel panic all the time…
Ok done it.
Fairly simple but scary...
bb99
Posts: 943
Joined: Wed Apr 02, 2008 12:04 am

Re: Help….

Post by bb99 »

Please post what you did for others to benefit.
tibetfreedom
Posts: 163
Joined: Fri Oct 22, 2010 11:21 am

Re: Help….

Post by tibetfreedom »

bb99 wrote:Please post what you did for others to benefit.
Login as root

force remove two extra files…

rm -f /etc/ld.so.conf.d/libjpeg-turbo.conf
rm -f /etc/ld.so.conf.d/ffmpeg.conf

Edit this file…

nano /etc/bash.bashrc

remove two lines at bottom of file

that did it for me.

Stopped the crashes etc after a restart…
Locked