Trylinux.org
 

February 19, 2008

Oracle Bug : exp-00003 for LOB tables

Filed under: General, oracle — tip @ 2:48 pm

Disclaimer: This is plagiarized! See: http://www.anysql.net/en/oracle/oracle_bug_exp00003.html

When you use old version of exp to export tables with LOB column from Oracle 9.2.0.5 or higher version, you will get an error “EXP-00003 : no storage definition found for segment …..”, actually this is an Oracle bug, you could temporary get it resolved by replace a view “exu9tne”, as following:

Before exporting, run the following SQL under sys:
CREATE OR REPLACE VIEW exu9tne (
tsno, fileno, blockno, length) AS
SELECT ts#, segfile#, segblock#, length
FROM sys.uet$
WHERE ext# = 1
UNION ALL
SELECT * FROM SYS.EXU9TNEB
/

After exporting, run the following to restore the view definition according to Metalink Notes.
CREATE OR REPLACE VIEW exu9tne (
tsno, fileno, blockno, length) AS
SELECT ts#, segfile#, segblock#, length
FROM sys.uet$
WHERE ext# = 1
/

February 8, 2008

Corruption error when trying to install older JRE

Filed under: General, linux — tip @ 10:34 pm

When trying to install an older version of the JRE on a newer Linux distro I was getting the following error:

Unpacking...
tail: cannot open `+480' for reading: No such file or directory
Checksumming...
1
The download file appears to be corrupted. Please refer
to the Troubleshooting section of the Installation
Instructions on the download page for more information.
Please do not attempt to install this archive file.

This is because tail has changed in the newer Linux distros. the +{number of lines} does not work unless you proceed it with a -n. So, edit the .bin file you downloaded make the following changes:


Replace: tail +480 $0 > $outname
With: tail -n +480 $0 > $outname
Replace:
if expr $sum1 != 22444 || expr $sum2 != 13542 ; then
echo “The download file appears to be corrupted. Please refer”
echo “to the Troubleshooting section of the Installation”
echo “Instructions on the download page for more information.”
echo “Please do not attempt to install this archive file.”
exit 1
fi
With:
# if expr $sum1 != 22444 || expr $sum2 != 13542 ; then
# echo “The download file appears to be corrupted. Please refer”
# echo “to the Troubleshooting section of the Installation”
# echo “Instructions on the download page for more information.”
# echo “Please do not attempt to install this archive file.”
# exit 1
# fi

February 6, 2008

Dumping a mysql table to SQL

Filed under: General, linux, reminder, tips — tip @ 1:52 pm

I usually use phpMyAdmin to dump my table to SQL, but sometimes it is easier to do it from the command line. Use the following syntax to dump a table to SQL.

mysqldump -p -e -c --add-drop-table -r table.sql dbname table

Warning: The –add-drop-table will cause it to drop the existing table when you import.

You can import this with the command

mysql -p dbname < table.sql

January 21, 2008

Btrfs

Filed under: General, linux — tip @ 8:08 pm

Looks like this filesystem has some promise, hope it matures quickly.

http://oss.oracle.com/projects/btrfs/

December 14, 2007

yum repository from Dell

Filed under: General, linux, tips — tip @ 1:53 pm

I was thinking to myself it would be really great if Dell made available a yum repository for open manage. So I did a search and sure enough the do! This makes my job a lot easier :)

http://linux.dell.com/repo/hardware/

Also check out http://linux.dell.com/wiki/index.php/Repository/software
and http://linux.dell.com/wiki/index.php/Repository/firmware

vsftpd 426 “Failure writing network stream”

Filed under: General, linux — tip @ 12:17 pm

I was getting errors when trying to download a file from a mounted windows share with vsftpd.  The fix for this problem is to add use_sendfile=NO to your vsftpd.conf file.

December 12, 2007

yum upgrades tip

Filed under: General, linux, tips — tip @ 10:37 pm

When upgrading with yum I have started taking an rpm inventory before and after the upgrade.
Before Upgrade:

rpm -qa > BeforeUpgrade.txt

After Upgrade:

rpm -qa > AfterUpgrade.txt

Then I can compare them so that I know which packages were not upgraded and I can figure out why the did not upgrade.

cat BeforeUpgrade.txt AfterUpgrade.txt | sort | uniq -c | sort -n | grep "^\ *2"

yum Could not find any working storages

Filed under: linux — tip @ 10:07 pm

I upgraded a server from CentOS 4 to CentOS 5 via yum and kept getting “Could not find any working storages.” I searched the web and found some other people having the same problem, but I didn’t see any solutions. After some fun with strace, I found that it was looking for /usr/lib/python2.4/site-packages/sqlite which wasn’t there. It turns out that the package name for python-sqlite did not change between CentOS4 and CentOS5 so the package was not upgraded. I suggest that if you have this problem you look at all the files in /usr/lib/python2.3/ and find out what packages they belong to with “rpm -qf” and upgrade them manually. You can upgrade python-sqlite with the following command (The version number may change).

rpm -Uvh --force http://mirror.centos.org/centos/5.1/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm

October 27, 2007

Problems with pyTivo ffmpeg and ac3

Filed under: linux, tivo — tip @ 11:57 pm

I kept getting errors when trying to use pyTivo to stream shows to my Tivo HD.
Unsupported codec (id=86020) for input stream #0.0

After researching this it seems that this is due to lack of ac3 support in ffmpeg. After examaning ffmpeg it looked like it was compiled correctly, but it still would not work. I uninstalled the rpm and compiled it manually. This made things worse, the shows did not even show up on the Tivo for tranfser. Finally I realized that a52dec and ffmpeg were installed from different repositories. The packages from the livna repository work, but packages from atrpms do not work. So in order to fix this, remove ffmpeg and transcode and all their dependancies with rpm -e. Then install ffmpeg and transcode with yum while disabling the atrpms repository.

yum --disablerepo=atrpms install ffmpeg transcode

Now if I could just increase the transfer speed.

P.S. I’m working on a python script that will download, decode and play shows from the tivo all at once, so shows play instantly.

October 24, 2007

Check out Hyperic

Filed under: reminder — tip @ 3:16 pm

This is just a reminder to myself to look into Hyperic

« Previous PageNext Page »