|
|
02-05-2010
, 11:08 AM
|
|
Posts: 172 |
Thanked: 155 times |
Joined on Jan 2010
@ London, UK
|
#2
|
|
|
02-05-2010
, 11:19 AM
|
|
|
Posts: 241 |
Thanked: 56 times |
Joined on Jan 2009
@ Novi Sad, Serbia
|
#3
|
|
|
02-05-2010
, 11:33 AM
|
|
Posts: 172 |
Thanked: 155 times |
Joined on Jan 2010
@ London, UK
|
#4
|
|
|
02-05-2010
, 11:43 AM
|
|
|
Posts: 241 |
Thanked: 56 times |
Joined on Jan 2009
@ Novi Sad, Serbia
|
#5
|
|
|
02-05-2010
, 12:55 PM
|
|
Posts: 946 |
Thanked: 1,629 times |
Joined on Oct 2009
@ Germany
|
#6
|
|
|
02-09-2010
, 12:04 AM
|
|
Posts: 172 |
Thanked: 155 times |
Joined on Jan 2010
@ London, UK
|
#7
|
| The Following User Says Thank You to damion For This Useful Post: | ||
|
|
02-11-2010
, 04:42 AM
|
|
Posts: 2 |
Thanked: 3 times |
Joined on Jan 2010
@ France
|
#8
|
|
|
02-11-2010
, 05:20 AM
|
|
|
Posts: 365 |
Thanked: 97 times |
Joined on Nov 2009
|
#9
|
|
|
02-11-2010
, 11:13 AM
|
|
Posts: 172 |
Thanked: 155 times |
Joined on Jan 2010
@ London, UK
|
#10
|
There are two things here :
- The unsupported syscall 240 is __NR_futex. The problem is that QEMU doesn't support NPTL for x86. This will certainly cause some problems with clone.
- You shouldn't mix host and guest files in the same place! Copy an x86 filesystem somewhere, and chroot into it from inside QEMU. That's the safest way of doing things
I've also been unable to get chroot (busybox) to work as I expected it, I get /bin/sh no such file or directory despite there being a bin/sh in the /place/ I'm chrooting to.| The Following User Says Thank You to damion For This Useful Post: | ||
![]() |
| Thread Tools | Search this Thread |
|
?:/home/opt/root# file hello
hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.8, statically linked, stripped
?:/home/opt/root# file `which file`
/usr/bin/file: ELF 32-bit LSB executable, ARM, version 1 (SYSV), for GNU/Linux 2.4.17, dynamically linked (uses shared libs), stripped
?:/home/opt/root# ./qemu-i386-2 ./hello
Hello World
?:/home/opt/root#
Next up, dynamically linked stuff, and then wine