View Single Post
  #7 (permalink)  
Old 07-29-2008, 01:37 PM
Mccreations Mccreations is offline
Active Member
 
Posts: 49
Default

You need to find: (in get_plat_tag)

Quote:
grep "DISTRIB_RELEASE=6" /etc/lsb-release > /dev/null 2>&1
if [ $? = 0 ]; then
echo "6${i}"
exit 0
else
You can then change it to:

Quote:
grep "DISTRIB_RELEASE=8" /etc/lsb-release > /dev/null 2>&1
if [ $? = 0 ]; then
echo "6${i}"
exit 0
else
And hopefully that should work.


If you get a message like this:

Quote:
You appear to be installing packages on a platform different
than the platform for which they were built.

This platform is UBUNTU6
Packages found: UBUNTU7
You would need to change:
"DISTRIB_RELEASE=7" to "DISTRIB_RELEASE=8"
I'm not sure if you'd ever need that, I don't know much about different installs.

Last edited by Mccreations : 07-29-2008 at 02:15 PM.
Reply With Quote