Home Page Add Favorite
 
Login To Site
Username :  
Password :  
   
   
Register
Forgot my password?
XexDash » Articles for March 2010 Year
Main Menu
Home Page Site Stats
Add News Register
Last Comments New Articles
RSS 2.0 Contact Us
 
Support
Advanced Search
All the latest news
Category
Site Info
Site Statistics
Top Author:
  1    halfcd 9
  2    tedawo 5
  3    landa123 5
  4    xbox 2


Membership:
  Total : 180   ( +0 )
  This month : 20
  This hour : 0
  Banned : 0


Articles:
  Total : 25  ( +0 )
  This Month : 5
  This hour : 0
  Awaiting validation : 5


Comments:
  Total : 20  ( +0 )
  This month : 1
  This hour : 0

Poll
Informer
(0)从零开始认识xbox360开发机前言
今天开始我打算写一个系列文章,从零开始认识xbox360开发机。我们来个简单的介绍吧。   ...

微软公布XB360秋季升级日期
 微软在东京游戏展2008的基调演讲中正式宣布,XBOX360的秋季系统升级日期确定为2008年11月19日,升级后用户将体验到更加便捷、追加众多新要素的“新X ...

XBOX硬盘游戏压缩经验谈
游戏压缩小技巧感觉对于没有时间,没铁,或者换大硬盘出现问题还不能的朋友还算实用   x原配的小硬盘游戏顶多拷贝一个   ...

Arshive
June 2010 (2)
May 2010 (1)
April 2010 (6)
March 2010 (6)
February 2010 (2)
January 2010 (3)
Change Skin
 
 
 

Sort of news: date news | popuryarnosti | attendance | commentaries | alphabet

Release » development : Xexdash 0/03A 添加本地与网络
 

Network update Picture

Xexdash 0/03A 添加本地与网络

 

Local update Picture

Xexdash 0/03A 添加本地与网络

 
 
Comments (1)  Read More...
 
 
Release » development : xexdash 0.03a debug version
 

 idebug


xexdash 0.03a debug version
xexdash 0.03a debug version

version only.
report pls.
link ...

 Download From Megaupload
 Download From Hotfile

 
 
Comments (3)  Read More...
 
 
Release » tech : How to Install Ubuntu onto Your Xbox 360 Hard Drive
 
Introduction:
This is an advanced guide for installing Ubuntu to an Xbox360. I am assuming you already have Linux experience and understand the fundamentals. Anybody who is willing to write a guide for beginners can feel free to reference any information from this guide.


Prerequisites:
• Xbox360 with a kernel version of 4532 or 4548. (If your kernel version is lower then 4532, you will need to update using HD_DVD_10-2006.zip.)
• Hitachi 360 DVD Drive with modified firmware (Samsung does not work!)
• Patched King Kong disk with the new King Kong Shader exploit for XeLL.
• Cpasjuste’s Gentoo Beta Live CD found here http://downloads.sourceforge.net/free60/ge...on-beta.tar.bz2
You must use the above version, because the first one lacks the tools needed.
• Internet Connection (High Speed is preferred, since you will be downloading the install packages from the internet.)
• Microsoft VGA cable for the 360 is also recommended, since it can be difficult to see what you are doing on a TV.
• USB Keyboard/mouse.
• Made a backup your retail xbox360 drive. (This is very important; not doing so will make it impossible to save 360 content to the drive again!)

Backing up your Xbox360 Retail Hard Drive WARNING:
Before even considering formatting your retail Xbox 360 Hard Drive for Linux, you must take a backup of either the whole drive or just the key sector to be able to use it again for saved games and other 360 content. This can be done with disk tools such as WinHex. If you’re unsure on how to do this, do not continue!

Installing Ubuntu Linux using Cpasjuste’s Gentoo Beta Live CD:
This guide is assuming that you have already patched and burned a King Kong ISO and have the new beta live CD booting your 360 into Gentoo. If you are not this far yet, then please refer to other guides to accomplish this. You will have to login as root before starting or put sudo at the beginning of each command, same goes for the rest of the guide.

At this point you should be in Gentoo Linux. DHCP should have setup your network connection. To check type ping www.google.com into the terminal you should get a response if your network connection is up and running. If not follow these steps to manually configure your network connection:

Type:
ifconfig eth0 192.168.0.2 up
Replace 192.168.0.2 with the IP address that you want to set.

route add default gw 192.168.0.1
Replace 192.168.0.1 with the gateway address that you want to set.

Evi /etc/resolv.conf
nameserver 192.168.9.1
Replace 192.168.0.1 with the nameserver address that you want to set.

Now test your connection again, ping www.google.com you should now get a response, if you don’t get a response double check your settings.

Setting up the Hard Drive:
Type
cfdisk /dev/sda
This will bring up a graphical fdisk program.
Create your Linux swap partition:
Select New > Primary > 1024 > Select Beginning
Create your Linux install partition (you have to arrow down to free space first):
Select New > Primary > Let it use the rest of the free space and just press enter

Now you should have two partitions, sda2 should have the largest portion of space and sda1 should be around 1 gig to be used for swap space, if this is correct then arrow over to write, press enter and type yes. Then quit

Once that is done you need to format the install partition with:
mkfs.ext3 /dev/sda2


Then setup your swap partition with:
mkswap /dev/sda1
sync; sync; sync
swapon /dev/sda1

Install Ubuntu to the Xbox360:
Now that your drives are formatted and partitioned, it is time to mount the install partition and make a directory to get started from:
mkdir /mnt/ubuntu
mount /dev/sda2 /mnt/ubuntu
cd /mnt/ubuntu
mkdir work
cd work

Get the Debootstrap tools:
wget http://archive.ubuntulinux.org/ubuntu/pool/main/d/debootstrap/debootstrap_0.3.3.2ubuntu3_all.deb

Extract debootstrap:
ar -xf debootstrap_0.3.3.2ubuntu3_all.deb
cd –
zcat < /mnt/ubuntu/work/data.tar.gz | tar xv

Change folder paths by typing:
export DEBOOTSTRAP_DIR=/mnt/ubuntu/usr/lib/debootstrap
export PATH=$PATH:/mnt/ubuntu/usr/sbin

Run debootstrap:
debootstrap --arch powerpc edgy /mnt/ubuntu http://archive.ubuntulinux.org/ubuntu

For the fastest installation, use a mirror closest to you. Mirrors are listed at
http://wiki.ubuntulinux.org/Archive.

Downloading the basic installation can take an hour or so.

Configure the Base System:
Once the download is complete change root to your new Ubuntu file system:
chroot /mnt/ubuntu /bin/bash

Create a custom fstab:
editor /etc/fstab

You will need to add these entry’s to your fstab:
/dev/sda2     /          ext3     defaults   0   0
/dev/sda1     none    swap    sw           0   0
proc          /proc     proc    defaults  0   0
sys          /sys      sysfs   defaults  0   0

Configure Networking:
You will now need to configure your network, below is an example. Make sure to use the settings for your network. (If you do not set a loopback as shown in the example, gnome will fail to boot correctly)
editor /etc/network/interfaces

iface lo inet loopback
auto lo

# To use dhcp:
auto eth0
iface eth0 inet dhcp

#To use static:
auto eth0
iface eth0 inet static
address 192.168.0.45
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
[/code]
Edit resolv.conf to insert your nameserver, below is an example. Make sure to use the settings for your network
editor /etc/resolv.conf

search hsd1.mn.comcast.net.
nameserver 192.168.0.1
nameserver 192.168.0.2
domain WORKGROUP

Now reboot the Xbox 360.

Booting into Ubuntu from the Hard Drive:
Since you are no longer using the live cd, you will need to burn this ISO that includes a kernel that will boot from the Hard Drive.
http://mydedibox.homelinux.com/ubuntu-inst...loader-sda2.iso

Boot this cd just as you booted the live cd. You should now be in Ubuntu Linux.

Adding users, groups, setting root password, and hostname:
Set a root password:
passwd root

Create a user for yourself:
adduser your_username

Create an admin group:
addgroup admin

Add yourself to the admin group:
adduser your_username admin

Add your username to sudoers:
visudo
your_username ALL=(ALL) ALL

Set a host name:
echo Xenon > /etc/hostname

Installing Ubuntu Desktop (Gnome):
Make sure your logged in as root and type:
aptitude install ubuntu-desktop

This also can take up to and hour or so. When it’s almost finished you will get a resolution setup screen, select 1280x768 as the default resolution with space bar, and deselect the rest. The setup will continue for ten or so more minutes.

Configuring X:
Next you will need to download the xenon Xorg driver.
Type:
cd /usr/lib/xorg/modules/drivers/
wget  http://lilstevie.com/assets/xbox360/xenonfb_drv.so

Then run the visual Xorg configuration:
sudo dpkg-reconfigure xserver-xorg


Setup as follows:

1. Attempt to autodetect video hardware? > No
2. X Server Driver: Xenonfb
3. Generic Video Card > Enter
4. Video card’s bus identifier: Press enter for default
5. Amount of memory: Press enter for default
6. Use kernel framebuffer device interface? > Yes
7. Autodetect keyboard layout? > Yes
8. Keyboard layout: us
That’s if you’re in the united states, if your not then fill in your default layout.
9. XKB rule set to use: xorg
10. Keyboard model: choose your rule set based on the options
11. Keyboard variant: leave blank if you’re in the U.S.
12. Keyboard options: Leave as default
13. Mouse Protocol: ImPS/2
14. Emulate a 3 button mouse? > Your choice
15. Xorg server modules: Default
16. Write default Files section to configuration file? > Yes
17. Attempt monitor detection? > Yes
18. Use generic monitor if it doesn’t detect it.
19. Video modes to be used by the X server: 1280x768
20. Method for selecting the monitor characteristics: Medium
21. Monitors best video mode: Choose what’s best for your monitor.
22. Write monitor sync ranges to the configuration file? > Yes
23. Desired default color depth in bits: 24

Now reboot and you will be greeted by ubuntu with Gnome the next time you load the XeLL boot cd.

Have fun!!
 
 
Comments (2)  Read More...
 
 
Release : XDK用 xbox1模拟器 及其分区2恢复 工具整合版发布
 

XDK用 xbox1模拟器 及其 分区2恢复 工具!!!!!
运行前请看压缩包内的Readme_CN.txt
使用方法:
1:拷贝到硬盘或者储存装置
2:启动XboxEmuCopier.xex
3:软件运行1分半钟后手动退出,
4:直接运行xbox游戏的default.xbe即可运行
分区2恢复工具制作:[JsTeam]SONIC3D
xbox1模拟器

图片稍后补上。

XDK用 xbox1模拟器 及其分区2恢复 工具整合版发布


现发布一个3d rls的测试版。
正式版稍后放出。

下载地址:
download1(不含Tdbx.db)
download2(不含Tdbx.db)

download2(完整版,含Tdbx.db)


Editor: xbox - 2010-03-25, 22:50
Reason: add download url mirror

 
 
Comments (0)  Read More...
 
 
Release » news : Xbox1 Backwards Compatibility v5829 for Devkits
 
Xbox1 Backwards Compatibility v5829 for Devkits

HACKED VERSION!! :D


:: Overview

This is a devkit version of the retail xbox360 backwards compatibility that
was released November 2007.

To install this, copy the Compatibilty folder to your devkits Y drive.
You may want to remove any existing files, although this should overwrite
all files.

This version has been hacked to play unsupported games, however this doesn't
mean they will work. This release includes a hacked version of the official
frontend, however you may want to try my replacement frontend which allows
you to set emulation options for each game.

At the moment there are 556 officially supported games, (ie games that should work
100% or close to it). A list of these games is available here:

http://www.xbox.com/en-US/games/backwardcompatibilitygameslist.htm




:: Hacks

I've attempted to remove any limits on the emulator, although i left in game
ratings checks in case you dont want your little ones to play violent games :)
This can be toggled in the dashboard anyway. The following hacks were done to
the emulator:

* Xbe signature checks removed (lets you run unsigned code)
* Xbe section hash checks removed (lets u run hacked xbes)
* Game region checks removed (region free baby!)
* Game media checks removed (play games from your hard drive)
* Debug/Devkit xbes supported (run your own xbox1 code)
* Attempt to play unsupported games (doesn't mean it will work hehe)

 
 
Comments (0)  Read More...
 
 
Release » development : XboxEmuCopier_Release_20100105
 
1:拷贝到硬盘或者储存装置
2:启动XboxEmuCopier.xex
3:软件运行1分半钟后手动退出,
4:直接运行xbox游戏的default.xbe即可运行
============================================================================
将XboxEmuCopier目录复制到Devkit分区下
如果需要复制TDBX,就把Tdbx.db复制到XboxEmuCopier\XboxEmu\TDBX\下
打开DrWatson,连上XDK
运行XboxEmuCopier.xex
如果有以下显示,就是完全成功了
============================================================================
Deleting "SysDisk:\Compatibility"
Deleting "SysDisk:\Compatibility\dash"
Deleting "SysDisk:\Compatibility\dash\fonts"
Deleting "SysDisk:\Compatibility\dash\fonts\Xbox Book.xtf"
Deleting "SysDisk:\Compatibility\dash\fonts\xbox.xtf"
Deleting "SysDisk:\Compatibility\dash\xodash"
Deleting "SysDisk:\Compatibility\dash\xodash\xonlinedash.xbe"
Deleting "SysDisk:\Compatibility\dash\xboxdash.xbe"
Deleting "SysDisk:\Compatibility\xbox.XEX"
Deleting "SysDisk:\Compatibility\xefu.XEX"
Deleting "SysDisk:\Compatibility\config.bin"
SystemPartition cleaned successfully.
Copying "game:\XboxEmu\Compatibility" to "SysDisk:\Compatibility"
Copying "game:\XboxEmu\Compatibility\dash" to "SysDisk:\Compatibility\dash"
Copying "game:\XboxEmu\Compatibility\dash\fonts" to "SysDisk:\Compatibility\dash\fonts"
Copying "game:\XboxEmu\Compatibility\dash\fonts\Xbox Book.xtf" to "SysDisk:\Compatibility\dash\fonts\Xbox Book.xtf"
Copying "game:\XboxEmu\Compatibility\dash\fonts\xbox.xtf" to "SysDisk:\Compatibility\dash\fonts\xbox.xtf"
Copying "game:\XboxEmu\Compatibility\dash\xodash" to "SysDisk:\Compatibility\dash\xodash"
Copying "game:\XboxEmu\Compatibility\dash\xodash\xonlinedash.xbe" to "SysDisk:\Compatibility\dash\xodash\xonlinedash.xbe"
Copying "game:\XboxEmu\Compatibility\dash\xboxdash.xbe" to "SysDisk:\Compatibility\dash\xboxdash.xbe"
Copying "game:\XboxEmu\Compatibility\xbox.XEX" to "SysDisk:\Compatibility\xbox.XEX"
Copying "game:\XboxEmu\Compatibility\xefu.XEX" to "SysDisk:\Compatibility\xefu.XEX"
Copying "game:\XboxEmu\TDBX" to "SysDisk:\TDBX"
Copying "game:\XboxEmu\TDBX\Tdbx.db" to "SysDisk:\TDBX\Tdbx.db"
All files have been copied to SystemPartition successfully.
============================================================================

[JsTeam]SONIC3D
2010.Jan.05
 
 
Comments (2)  Read More...
 
 
 
 
Calendar    
«    March 2010    »
MoTuWeThFrSaSu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
   Tag Cloud  
on, XexDash, xexdash xbox360
   Last News  
» [XDK]Dantes_Inferno_Title_Update_#2
» [XDK]Gears of War 2 Title Update #6
» XexDash v0.03b - 2010.5.11
» xdk 可以通过NAS 玩游戏
» xexdash 0.04 preview
» Gears of War 3 Trailer Premiere
» 自制系统流水账
» HOW TO: Unencrypted network
» XexDash v0.03 - 2010.4.2
» Xexdash 0/03A 添加本地与网络
» xexdash 0.03a debug version
» How to Install Ubuntu onto Your Xbox 360 Hard Drive
» XDK用 xbox1模拟器 及其分区2恢复 工具整合版发布
» Xbox1 Backwards Compatibility v5829 for Devkits
» XboxEmuCopier_Release_20100105
» XexDash v0.02b - 2010.1.31
» XexDash v0.02b - 2010.1.31
» XexDash v0.02 - 2010.1.29
» XexDash_v0.02 发布
» XexDash v0.02 功能预览版发布
   Top News  
   Random News  
» XexDash v0.03b - 2010.5.11
» Gears of War 3 Trailer Premiere
» xexdash 0.03a debug version
» xdk 可以通过NAS 玩游戏
» How to Install Ubuntu onto Your Xbox 360 Hard Drive
» XexDash v0.02 - 2010.1.29
» XexDash v0.03 - 2010.4.2
» 自制系统流水账
» XexDash_v0.02 发布
» HOW TO: Unencrypted network
» [XDK]Gears of War 2 Title Update #6
» xexdash 0.04 preview
» XexDash v0.02 功能预览版发布
» XDK用 xbox1模拟器 及其分区2恢复 工具整合版发布
» XexDash v0.02b - 2010.1.31
» Xbox1 Backwards Compatibility v5829 for Devkits
» XexDash v0.02b - 2010.1.31
» XboxEmuCopier_Release_20100105
» [XDK]Dantes_Inferno_Title_Update_#2
» Xexdash 0/03A 添加本地与网络