Are you a spammer

Please note, that the first 3 posts you make, will need to be approved by a forum Administrator or Moderator before they are publicly viewable.
Each application to join this forum is checked at the Stop Forum Spam website. If the email or IP address appears there when checked, you will not be allowed to join this forum.
If you get past this check and post spam on this forum, your posts will be immediately deleted and your account inactivated.You will then be banned and your IP will be submitted to your ISP, notifying them of your spamming. So your spam links will only be seen for an hour or two at most. In other words, don't waste your time and ours.

This forum is for the use and enjoyment of the members and visitors looking to learn about and share information regarding the topics listed. It is not a free-for-all advertising venue. Your time would be better spent pursuing legitimate avenues of promoting your websites.

Ultimate 1.8 Gamers Download

Help & support for Ultimate Edition 1.8


Re: Ultimate 1.8 Gamers Download

Postby chambo622 » Mon Jul 14, 2008 11:18 pm

stdanko wrote:if i have a 64 bit amd what should i do install 64bit 1.8 if i do that how do i get the gamer stuff or should i just download and install 1.8 gamers edition you posted. any help would be great im kinda new to this but right now i have normal ubuntu 8.04 but this looks much better so any help would be great....


Hi, welcome to the forums. Frankly its really your preference. 64 bit has the advantage of better speed/security/stability. However some apps and eyecandy are only for 32 bit and 32 bit has more preinstalled. If you into games or just want the extra apps from Ultamatix, I say go for 32 bit gamers. Ultimate Edition is great you can't go wrong.
GigaByte P35-DS3L
4GB OCZ DDR2-667 @ DDR-800
Core 2 Duo E6300 @ 2.8 Ghz
Arctic Cooling Freezer 7 Pro
2x WD 250GB SATA
ATI Radeon X1600 Pro 256MB
Ultimate Edition 1.8
Windows Vista Home Premium 32 bit
Leo4All 10.5.2

www.ScienceProUSA.com
www.ScienceProTech.com
chambo622
U.E. Newbie
U.E. Newbie
 
Posts: 5
Joined: Wed Jun 04, 2008 2:19 pm
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate 1.8 Gamers Download

Postby TheeMahn » Tue Jul 15, 2008 7:24 pm

chambo622 wrote:
stdanko wrote:if i have a 64 bit amd what should i do install 64bit 1.8 if i do that how do i get the gamer stuff or should i just download and install 1.8 gamers edition you posted. any help would be great im kinda new to this but right now i have normal ubuntu 8.04 but this looks much better so any help would be great....


Hi, welcome to the forums. Frankly its really your preference. 64 bit has the advantage of better speed/security/stability. However some apps and eyecandy are only for 32 bit and 32 bit has more preinstalled. If you into games or just want the extra apps from Ultamatix, I say go for 32 bit gamers. Ultimate Edition is great you can't go wrong.


I will break this down to you and will show you what you do not see yet, I have been playing with "libsnack"...

all applications I write if they do not do so to reflect 64 bit, I provide an example, I have posted this elsewhere...


w/o a doubt I correct things to make things happen, be it 64 or 32...

Code: Select all
function wopinstall {
dpkg_check
if test -f worldofpadman.run
then
./worldofpadman.run 2>&1 | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --pulsate --auto-close --title "Installing World Of Padman..."
else
wget -c http://thilo.kickchat.com/download/worldofpadman.run 2>&1 | sed -u 's/.*\ \([0-9]\+%\)\ \+\([0-9.]\+\ [KMB\/s]\+\)$/\1\n# Downloading \2/' | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --auto-close --title="Downloading World Of Padman..."
sudo chmod +x worldofpadman.run
./worldofpadman.run 2>&1 | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --pulsate --auto-close --title "Installing World Of Padman..."
fi
#create Icon since they cant seem to do it right
#since we have root we need to discover normal username so we can create the shortcut & set proper permissions
NU=$(cat /etc/passwd | grep 1000 | cut -d: -f1)
#set proper permissions
sudo chown -R $NU:$NU "/usr/local/games/WoP/"
if [ "$architecture" = "x86_64" ]; then
sudo echo "[Desktop Entry]
Name=World Of Padman 
Comment=World of padman
Exec=/usr/local/games/WoP/wop-engine.x86_64
Icon=/usr/local/games/WoP/wop.png
Terminal=false
Type=Application
Categories=Application;Game;" >> /usr/share/applications/worldofpadman.desktop
else
sudo echo "[Desktop Entry]
Name=World Of Padman 
Comment=World of padman
Exec=/usr/local/games/WoP/wop-engine.i386
Icon=/usr/local/games/WoP/wop.png
Terminal=false
Type=Application
Categories=Application;Game;" >> /usr/share/applications/worldofpadman.desktop
fi
}

function wopremove {
#created custom uninstaller since thiers does not work.  kicks back "Could not find a usable uninstall program. Aborting."
NU=$(cat /etc/passwd | grep 1000 | cut -d: -f1)
#create directory incase they installed it elsewhere, no sense in scraping all thier games
sudo mkdir /usr/local/games/WoP/ 2>/dev/null
sudo mkdir /home/$NU/WoP 2>/dev/null
#remove it
echo "Removing World Of Padman please wait ..."
sudo rm -R /home/$NU/WoP 2>/dev/null
sudo rm -R /usr/local/games/WoP/ 2>/dev/null
#remove shortcut created earlier
sudo rm /usr/share/applications/worldofpadman.desktop
echo "Done."
}


What happens in the above code? Read my comments not my job, but still make it so you do not have to worry about it.

if [ "$architecture" = "x86_64" ]; then
tests to see if u use 32 or 64 bit architecture and takes care of business accordingly. What I have is 10X of anything you can download (funny I have not shared with my admin), some features are not implemented yet, note the word yet.

Before I am done you will all be programmers...

Lets play with python...
Code: Select all
import wave, ossaudiodev

sound = wave.open('saw.wav' , 'rb')

fr = sound.getframerate()
nc = sound.getnchannels()
nf = sound.getnframes()
data = sound.readframes(nf)
sound.close()
dsp = ossaudiodev.open('/dev/dsp','w')
dsp.setparameters(ossaudiodev.AFMT_S16_NE, nc, fr)
dsp.write(data)
dsp.close()
import wave, ossaudiodev

sound = wave.open('saw.wav' , 'rb')

fr = sound.getframerate()
nc = sound.getnchannels()
nf = sound.getnframes()
data = sound.readframes(nf)
sound.close()
## take to the player for program 5
dsp = ossaudiodev.open('/dev/dsp','w')
dsp.setparameters(ossaudiodev.AFMT_S16_NE, nc, fr)
dsp.write(data)
dsp.close()


saw wave attached... code executed in the same folder will yield the same results.

Now we are doing python... MP3 integration is coming.

Just my 2 cents,

TheeMahn
Attachments

saw.wav [ 1.74 MiB | Viewed 9064 times ]

Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate 1.8 Gamers Download

Postby LeadFingers » Thu Jul 17, 2008 11:04 am

vinca wrote:Sorry to all who were downloading on HTTP--our connection simply couldn't handle it. It was completely bottlenecked and I doubt any of you were getting very good speeds.

We've left FTP going, so please feel free to download from ftp://ftp.scienceprousa.com. You should be getting much better speeds there without the congestion.

Go Ultimate!
Strange thing, I tried your FTP link and it asked for a Username & Password to allow me access. Since I didn't know either, it just laughed at me.
1st Box: Ultimate Edition 2.0 x64/ 1.8 x64
2nd Box: XP (dusty)
3rd Box: Stable Media box Ultimate Edition 1.8 x64 with XBMC

The Oxen are slow but the Earth is patient ~Chuen~
User avatar
LeadFingers
U.E. God
U.E. God
 
Posts: 1303
Joined: Fri Nov 23, 2007 1:46 am
Location: Salem Oregon
Age: 63
Operating System: Ultimate Edition 3.1 64 BIT



Re: Ultimate 1.8 Gamers Download

Postby Dj Synth Virus » Thu Jul 17, 2008 12:05 pm

yes i got the same thing
Dj Synth Virus
U.E. Newbie
U.E. Newbie
 
Posts: 4
Joined: Wed Jul 16, 2008 8:16 pm
Operating System: Ultimate Edition 2.5 32 BIT



Re: Ultimate 1.8 Gamers Download

Postby chambo622 » Thu Jul 17, 2008 12:47 pm

Sorry about that, some leprecon pulled the plug on the server during a partition format. Long story short, had to reinstall and reconfigure everything. Still have to put the ISO back up and add an FTP group for that file. Hopefully later today.
GigaByte P35-DS3L
4GB OCZ DDR2-667 @ DDR-800
Core 2 Duo E6300 @ 2.8 Ghz
Arctic Cooling Freezer 7 Pro
2x WD 250GB SATA
ATI Radeon X1600 Pro 256MB
Ultimate Edition 1.8
Windows Vista Home Premium 32 bit
Leo4All 10.5.2

www.ScienceProUSA.com
www.ScienceProTech.com
chambo622
U.E. Newbie
U.E. Newbie
 
Posts: 5
Joined: Wed Jun 04, 2008 2:19 pm
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate 1.8 Gamers Download

Postby Dj Synth Virus » Thu Jul 17, 2008 1:09 pm

thats unfortunate , i said screw it and installed the 1.8 ultimate and just upgraded to 1.8 gamers . <3
Dj Synth Virus
U.E. Newbie
U.E. Newbie
 
Posts: 4
Joined: Wed Jul 16, 2008 8:16 pm
Operating System: Ultimate Edition 2.5 32 BIT



Re: Ultimate 1.8 Gamers Download

Postby TheeMahn » Thu Jul 17, 2008 11:07 pm

Dj Synth Virus wrote:thats unfortunate , i said screw it and installed the 1.8 ultimate and just upgraded to 1.8 gamers . <3


Eventually you just will not care, what do you bet I turn the *nix community around. Be it a game it is getting handled, it is being tested believe that.

Take close note to the shot I provide...

I am far from done. That is the un-install tab I have selected right?

3.8GB of mem is 32 bit's max in case u thought I was talking a mad line... Promise me you won't have a heart attack first time it fires up and you hear the buzz saw. Re-building your o/s, I think a circular saw is appropriate ;)
Screenshot-14.png
proof


most think yeah what ever... I have written / modified 72 scripts (this means you can have 72 programs that are typically not available to you one of them is over 100 lines long), python (resin) danger is history as far as I see it, however I utilized a new addition to add a help file that uses wxwidgets (my stupidity & set me back in 32 bit),I will fix it (or Cab will write it, and I re-write the "lib"). Mp3 support if implemented will be hand / hard coded. I will write in C before I require that or any other library. Hardy / Debian users will not suffer. I would like to point out does not happen in python w/o libs, the saw sound you will hear is solid python pressed to /dev/dsp & created a separate thread to make it happen. I challenge when I release it to even find it... The source is in the deb.


seems like I just don't care, far from the truth.

TheeMahn
Attachments
Screenshot-13.png
2 things to look at launchpad / 33 of 35 installed in 64 (toolbar).
Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate 1.8 Gamers Download

Postby cfgtech » Thu Jul 24, 2008 2:05 am

I am getting a login screen for the FTP site
I tried anonymous but it didn't go thru
I registered at the site but haven't got the email yet...then again it was 5 minutes ago
I am a big fan of the Gamers Edition and I would like to D/load it plz
Acer Aspire 9410z Ultimate 1.4 gamer's edition
User avatar
cfgtech
U.E. Newbie
U.E. Newbie
 
Posts: 4
Joined: Fri Nov 09, 2007 2:28 am
Operating System: Ultimate Edition 3.0 32 BIT



Re: Ultimate 1.8 Gamers Download

Postby TheeMahn » Thu Jul 24, 2008 9:50 am

cfgtech wrote:I am getting a login screen for the FTP site
I tried anonymous but it didn't go thru
I registered at the site but haven't got the email yet...then again it was 5 minutes ago
I am a big fan of the Gamers Edition and I would like to D/load it plz


I am sorry to say he could not handle the load & the file is too large for me to host. Torrent is your only option that I am aware of.
Attachments
notslow.png
it is fast I am seeing between 7 & 800KPS (850 is my max)
Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate 1.8 Gamers Download

Postby cfgtech » Thu Jul 24, 2008 10:51 pm

Thanx for posting the link you are Da Man or rather TheeMahn
I will go ahead and try it !!
My laptop runs great I wanna put it on my desktop as well
Acer Aspire 9410z Ultimate 1.4 gamer's edition
User avatar
cfgtech
U.E. Newbie
U.E. Newbie
 
Posts: 4
Joined: Fri Nov 09, 2007 2:28 am
Operating System: Ultimate Edition 3.0 32 BIT

PreviousNext

Return to Ultimate Edition 1.8

Who is online

Users browsing this forum: No registered users and 2 guests