Sonntag, Juli 20, 2008

X-Box Isos unter linux bearbeiten mit extract- Xiso !!!!

Da ich lange Zeit nichts passendes unter Linux für die X-Box gefunden habe um mit den Isos umzugehen bin ich jetzt doch um so zufriedener ,extract- xiso heisst das teil und erfüllt eine Menge Funktionen hier mal ein paar Sachen wie damit umzugehen ist.

To clone a DVD in the XBox drive by creating a new XBox iso on your computer's hard drive:

This assumes:

  1. The DVD is accessible as the D: drive (or /d directory) on the XBox.
  2. You want the iso on your computer's hard drive to be called "game.iso"
  3. Your XBox is on the LAN at address 192.168.1.1
  4. FTP is ENABLED in your dashboard
  5. The username and password for the dashboard ftp account are "xbox" and "xbox" respectively (if not use -u and -p options).
  • from UNIX: extract-xiso -c /d game.iso -f 192.168.1.1
  • from DOS: exiso.exe -c d: game.iso -f 192.168.1.1

To upload an XBox iso from your computer's hard drive to your XBox via FTP:

This assumes:

  1. You have created a partition on your XBox called F: (or /f directory) that you upload games to.
  2. You want the game to be uploaded into a folder called "games" on the F: partition (/f/games/)
  3. The iso on your computer's hard drive is called "game.iso"
  4. Your XBox is on the LAN at address 192.168.1.1
  5. FTP is ENABLED in your dashboard
  6. The username and password for the dashboard ftp account are "xbox" and "xbox" respectively (if not use -u and -p options).

Note that when finished the game will be on the XBox at /f/games/game/ as a folder that is the same as the name of the iso (minus the .iso extension) is created in the destination folder prior to uploading.

  • from UNIX: extract-xiso -d /f/games -f 192.168.1.1 game.iso
  • from DOS: extract-xiso -d F:\games -f 192.168.1.1 game.iso

To convert an XBox iso created with another xiso tool (such as GDFIMAGE or other) to extract-xiso format:

Q: Why do this?
A: Nearly all XBox iso creation tools make iso's that are very inefficient WHEN BURNED TO DVD (it makes no difference if you are just uploading to the xbox hard drive). If you plan to backup your game to a DVD it is a good idea to optimize the directory structure with this command before you burn it. Your games will load MUCH faster from the XBox DVD drive.

Note: This command creates an optimized COPY of the existing .iso, so you'll need some free disk space at least equal to the size of the .iso you're optimizing. When complete the optimized .iso may be not be the exact same size as the original (either a little smaller or a little larger). This is due to the way the files have to be laid out internally and it is no big deal. The DVD will still read MUCH faster in the XBox drive.

  • from UNIX or DOS: extract-xiso -r game.iso

To list the files (without extracting) in a .iso:

  • from UNIX or DOS: extract-xiso -l game.iso

To find out all the command-line options you can use:

  • from UNIX or DOS: extract-xiso (no arguments)

Wer das Tool gerne haben möchte hier ist der Download extract-xiso

Samstag, Juli 19, 2008

Guitarway to Heaven 4 Amplified .......

Für alle die auf Guitar Hero Games oder sonstige Button Mashing Games stehn denen wird dieses Game richtig viel Freude bereiten. Die anderen sollten sich dieses Game auf keinen Fall entgehen lassen zumal es ja free ist da Homebrew. Um euch vielleicht noch ein bisschen mehr Infos zu geben das Game bietet wirklich sehr viel 4 Schwierigkeitsstufen jede Menge hammer guter Songs - da lohnt das laden schon fast nur der Songs wegen *grins*hier noch ein paar Bilder damit ihr seht das das Game wirklich eine erstaunlich gute Qualität bietet.


Alle die jetzt richtig neugierig geworden sind aber sich vielleicht doch noch nicht so richtig zu einem Download durchringen können, für die gibt es jetzt noch 2 feine Appetithäppchen in form von youtube Videos.

Und hier noch eines was euch das Gameplay ein bisschen demonstrieren soll.

Alle die das Teil jetzt Downloaden möchten hier gibts das teil ist aber leider nur als Torrent erhältlich hier der Link zum Torrent DOWNLOAD GUITARWAY to HEAVEN4.

Dienstag, Juli 15, 2008

Filer 5.3


Neue Version von Filer ist da!!!!
Hier die änderungen:
general:
- putting filer/text/binary [.bmp/.jpg/.png] in the same folder of Filer, Filer changes background as mode changes.

picture viewer:
- image loading will be done in a separated thread.
- reduced a bug that audio playback was stopped while reading a piture.
- added a feature to read next picture in background. (maximum 7 pictures)

Download Filer 5.3

Montag, Juli 07, 2008

XMMS in Ubuntu (8.04) Hardy Heron installieren ....

Manchmal gibt es Sachen, die verstehe ich einfach nicht, habe mir das Wochenende mal Ubuntustudio auf den PC installiert das ja auf Hardy Heron basiert. Und muss sagen ich find das echt nicht übel was da schon an Multimediasachen mitinstalliert wird. Nur da ich ja normal nicht unbedingt Ubuntu nutze und ich XMMS als MP3 Player einfach gut finde hab ich den doch sehr vermisst, dachte durch suchst halt schnell die Rep. Quellen und installierst das teil nach, nee pustekuchen das wird nich mehr geführt mann oh mann also was tun, weil haben will ich den Player ja schon !!!

Hier mal schritt für schritt wie mann ihn doch bekommt:

Erster Schritt:

Als erstes brauchen wir mal alle nötigen Pakete um XMMS compilieren zu können , also einfach folgendes in euer terminal hacken:

# sudo apt-get install autotools-dev automake1.9 libtool gettext libasound2-dev libaudiofile-dev \libgl1-mesa-dev libglib1.2-dev libgtk1.2-dev libesd0-dev libice-dev libmikmod2-dev libogg-dev \libsm-dev libvorbis-dev libxxf86vm-dev libxml-dev libssl-dev build-essential make

Wie lange es jetzt dauert bis alles geladen ist hängt natürlich von eurer Internet Verbindung ab.

Zweiter Schritt:

Vorbereitung um XMMS zu compilieren.

Erstellt ein Verzeichnis in eurem HOME Verzeichnis:

# mkdir ~/build

Nun wechselt ihr in dieses Verzeichnis:

# cd ~/build

Download XMMS sources:

# wget http://xmms.org/files/1.2.x/xmms-1.2.11.tar.gz

Das ganze entpacken:

# tar xvf xmms-1.2.11.tar.gz

Nun wechselt ihr in das XMMS Verzeichnis:

# cd xmms-1.2.11/

Dritter Schritt:

Nun das ganze compilieren:

Das generiert die benötigten Files und checkt euer System:

# ./configure --prefix=/usr

Das aktuelle nun compilieren

# make

Vierter Schritt:

das ganze installieren:

# sudo make install
Nach dem installieren wird das source Verzeichnis nicht mehr gebraucht also löschen:

# cd
# rm -rf ~/build

So das wars, nun starten wir XMMS: drückt ALT+F2 dann schreibt einfach xmms und dann enter !!! Viel spass mit eurem XMMS Player

Freitag, Juli 04, 2008

PSP Rhythm 8.0 eines der besten Homebrew Sachen die es gibt ....

Für alle die gerne auf der PSP ihren musikalischen Fähigkeiten nachgehen wollen ist dieses Programm wirklich ein Highlight das seines gleichen sucht.Wer gerne mit Samples usw. arbeitet für den stellt dieses Programm wirklich eine gelungene Möglichkeit dar seine Creative Ader auch unterwegs zu nutzen. Mit den ganzen Funktionen die PSP Rhythm 8.0 mittlerweile bietet gehört es eindeutig zu den besten Homebrew Sachen die es für die PSP gibt. Was die 2 Brüder Louie and Billy Iturzaeta da geschafft haben verdient wirklich aller grössten Respekt, und es ist eine wirkliche Freude das sie der PSP Community dieses Programm zur Verfügung stellen. Wer noch mehr Infos oder auch Sample Kits braucht sollte unbedingt auch mal auf ihrer Homepage vorbeischauen PSPRhythm8.0.



Download PSP-Rhythm8.0 Windows Installer

Download PSP-Rhythm8.0 Manual Installer

Download PSP-Rhythm8.0 User Manual

Download PSP-Rhythm8.0 Quick Guide

Mittwoch, Juli 02, 2008

Filer 5.2



Eine neue Version von Filer ist draussen hier die änderungen:

filer:
- added "GAME4XX" folder to re-order game icons. (added "GAMEnaa" folder : n=0-9, a=0-9/a-z/A-Z)
picture viewer:
- changed circle button's function to toggle "make a picture to fit screen width" and "to fit screen height".
binary editor:
- fixed a bug that a help screen was vanished when Filer finishes to read a large file.

Download Filer5.2