Go Back  
Reply
 
Thread Tools
Old 02-20-2011   #11
lernatix
Member
 
lernatix's Avatar
 
Join Date: Feb 2009
Posts: 975
Likes: 129
Liked 150 Times in 114 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
Video unavailable.

Anyway, while I am in pure awe of your skills, I still await the day we can just install from DVD however, at least it sounds like the .img file limitations are lessening. This might even tempt me to give Debian another shot. But I doubt it. :P
__________________
Honour: A concept entailing a perceived quality of worthiness that affects the social standing of an individual or corporate body. Accordingly, corporate bodies are assigned worth and stature based on the harmony of their actions with a specific code of honour, and the moral code of the society at large.
lernatix is offline   Reply With Quote
Old 02-21-2011   #12
josvadolla
Member
 
Join Date: Sep 2010
Posts: 95
Likes: 10
Liked 8 Times in 7 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Thanks for a nice update! I tried compiling the mesa driver myself but did not quite succeed

Anyway, I were hoping we could use it to watch videos, but I still get pink vertical lines on the image while watching in fullscreen...
josvadolla is offline   Reply With Quote
Old 02-21-2011   #13
mr puffin
Apprentice
 
Join Date: Aug 2009
Posts: 21
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Originally Posted by lernatix View Post
Video unavailable.

Anyway, while I am in pure awe of your skills, I still await the day we can just install from DVD however, at least it sounds like the .img file limitations are lessening. This might even tempt me to give Debian another shot. But I doubt it. :P
my personal opinion is give debian another try
if i use and linux distro i swear by debian based systems myself







and as for making a swap usb wouldn't it be just as beneficial to make a swap.img rather than taking up a usb (sacrifice HDD space for a USB slot since i only have 2)

make swap in directory (change "count=" to desired size in MB 1024=1gb) also change /swap.img to /location/of/your/choice/swap.img (directory you want it it)

example of 1gb swap on root

# sudo dd if=/dev/zero of=/swap.img bs=1024k count=1024

then format it (mkswap)
# sudo mkswap /swap.img

enable swap (swapon)
# sudo swapon /swap.img

then edit /etc/fstab with editor of choice (nano, gedit, leafpad)
# sudo gedit /etc/fstab

add "/swap.img none swap sw 0 0" at end without quotes


i'm not a major linux user (mac user) but from what i see is there is really no difference of using an img rather than a USB pretty much just

-MrPuffin
PS: don't mind me i'm just trying to look smart lol
mr puffin is offline   Reply With Quote
Old 02-21-2011   #14
allyourbasekris
Apprentice
 
Join Date: Feb 2011
Posts: 8
Likes: 0
Liked 3 Times in 1 Post
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
I feel like I'm missing something, but I keep getting a kernel panic when trying to mount a fat32 formatted external usb drive. I've got this on all the versions of Debian or Ubuntu I've tried, is this a problem with Asbestos or am I just really stupid?

I know fat32 is odd but I'm using the ps3 to download newsgroup files including music and video files so I would like to be able to play them back through on the ps3 itself hence the fat32 format.

I'd love some help, I'm a fairly confident linux user but this has me stumped.
allyourbasekris is offline   Reply With Quote
Old 02-22-2011   #15
madshaun1984
 
madshaun1984's Avatar
 
Join Date: Mar 2008
Location: At Home
Posts: 726
Likes: 129
Liked 207 Times in 106 Posts
Mentioned: 18 Post(s)
Tagged: 0 Thread(s)
Th reason I suggested using a swap device rather than an img is the ps3's hdd gets pretty backlogged without a swap, and adding the swap as another file for the hdd to read/write, would likely juyst slow things down even more.

As it is the way I have set this up, it runs as OtherOS did speed wise, has the same ram issues, but works just aswell.

As for the fat32 issue with the usb, you may need to add the device in /etc/fstab before it will mount. Google for adding a fat32 usb to the automount list.
__________________
madshaun1984 is offline   Reply With Quote
Old 02-22-2011   #16
snock
Apprentice
 
Join Date: Sep 2010
Posts: 1
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Originally Posted by allyourbasekris
I feel like I'm missing something, but I keep getting a kernel panic when trying to mount a fat32 formatted external usb drive. I've got this on all the versions of Debian or Ubuntu I've tried, is this a problem with Asbestos or am I just really stupid?

I know fat32 is odd but I'm using the ps3 to download newsgroup files including music and video files so I would like to be able to play them back through on the ps3 itself hence the fat32 format.

I'd love some help, I'm a fairly confident linux user but this has me stumped.

Read more: http://www.ps3hax.net/showthread.php...#ixzz1EggCyWIV
I have tried to load Debian from a USB stick in fat32 for home with no problem creating an ext4 partition. It's brutal how slow that is even more otheros.

It could use ps3vram?
Originally Posted by http://psubuntu.com/wiki/PSUbuntuGPU
Enabling ps3vram
Open up a terminal window
run the following commands:

sudo mkswap /dev/ps3vram
sudo swapon -p1 /dev/ps3vram

swapon -p1 means sets the priority higher than the hard drive swap, so Ubuntu will leave the hard drive alone until all other memory is used.

Now lets see if that worked by using another command:
swapon -s
I remember when I used otheros noticed that a lot, thus using a graphical environment light as lxde, in terms of sound I guess I will be here to stay ..

Great job you do, I have wanted to see xbmc running on the PS3 but for now is a slow xD, sorry for my English I'm Spanish, Thanks

Last edited by snock; 02-22-2011 at 05:46 AM.
snock is offline   Reply With Quote
Old 02-22-2011   #17
allyourbasekris
Apprentice
 
Join Date: Feb 2011
Posts: 8
Likes: 0
Liked 3 Times in 1 Post
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Originally Posted by madshaun1984 View Post
Th reason I suggested using a swap device rather than an img is the ps3's hdd gets pretty backlogged without a swap, and adding the swap as another file for the hdd to read/write, would likely juyst slow things down even more.

As it is the way I have set this up, it runs as OtherOS did speed wise, has the same ram issues, but works just aswell.

As for the fat32 issue with the usb, you may need to add the device in /etc/fstab before it will mount. Google for adding a fat32 usb to the automount list.
Yeah, tried adding it via fstab already as /dev/sda1 /mnt/media/fat vfat user,rw,exec 0 0
All seems ok until I need to access the mountpoint then, blam system freezes.
allyourbasekris is offline   Reply With Quote
Old 02-22-2011   #18
madshaun1984
 
madshaun1984's Avatar
 
Join Date: Mar 2008
Location: At Home
Posts: 726
Likes: 129
Liked 207 Times in 106 Posts
Mentioned: 18 Post(s)
Tagged: 0 Thread(s)
/dev/sdd1 /mnt/media/usb fat32 user,rw,exec 0 0

Try that (if you use the far right port on your usb, if your using the left change sdd1 to sdd2.

If you have a slim sda1 or sda2.

The left usb port may even be sdb1 (or on a fat ps3, the second to right port would be sde1).

I'll fire up my ps3 in a sec see if I can fix it.

The line

/dev/sdd1 /media/usb vfat user,rw,exec 0 0

worked for me, but not if the usb is removed/reinserted while asbestos is running,

Start Asbestos with your usb drive in the port you want, then edit /etc/fstab with the line above, editing it for your devices port (as detailed above).

Then save and exit fstab, and type sudo mount /dev/sd** (changing ** for your device).

You may have an issue unmounting the drive, but it will at least now be accessable on the ps3.

You'll also need to restart to swap usb drives
__________________

Last edited by madshaun1984; 02-22-2011 at 07:03 PM.
madshaun1984 is offline   Reply With Quote
Old 02-22-2011   #19
allyourbasekris
Apprentice
 
Join Date: Feb 2011
Posts: 8
Likes: 0
Liked 3 Times in 1 Post
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Originally Posted by madshaun1984 View Post
/dev/sdd1 /mnt/media/usb fat32 user,rw,exec 0 0

Try that (if you use the far right port on your usb, if your using the left change sdd1 to sdd2.

If you have a slim sda1 or sda2.

The left usb port may even be sdb1 (or on a fat ps3, the second to right port would be sde1).

I'll fire up my ps3 in a sec see if I can fix it.

The line

/dev/sdd1 /media/usb vfat user,rw,exec 0 0

worked for me, but not if the usb is removed/reinserted while asbestos is running,

Start Asbestos with your usb drive in the port you want, then edit /etc/fstab with the line above, editing it for your devices port (as detailed above).

Then save and exit fstab, and type sudo mount /dev/sd** (changing ** for your device).

You may have an issue unmounting the drive, but it will at least now be accessable on the ps3.
Thanks for all your help will test in the morning and let you know how I got on.
allyourbasekris is offline   Reply With Quote
Old 02-23-2011   #20
vaalir
Member
 
Join Date: Feb 2011
Posts: 158
Likes: 12
Liked 33 Times in 23 Posts
Mentioned: 5 Post(s)
Tagged: 0 Thread(s)
ok, now for the swappy goodness.. i hope? but need a little help here...
i did:

sudo dd if=/dev/zero of=/mnt/1024Mb.swap bs=1M count=1024
then
sudo mkswap /mnt/1024Mb.swap
browsed to my mnt folder and put that file on my fat formatted (via ubuntu, hopefully fat32, didn't say..) USB drive.. since onwards in the how to i found it said "ok, now to mount the swap file!" but i stopped before that. only did what i said earlier in the post.
i have to redownload your image(s) since they were on a laptop that i was going to format and reinstall (in progress ATM)
but am i good to go now?
sudo gedit /etc/fstab then the relevant port?

if i get no reply in time, i'll ofc just try it hope for an answer! thanks for the image\how-to so far!
vaalir is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 08:28 AM.