search for: tuxbox

Displaying 5 results from an estimated 5 matches for "tuxbox".

2007 Dec 22
1
CentOS on laptops - TuxBox?
RedHat magazine this month has an article about the TuxBox M750: http://www.redhatmagazine.com/2007/12/06/hardware-review-tuxbox-computers-sportcoat-m750-laptop/ Has anyone bought one of these? I'm particularly interested in estimated battery life, which that review doesn't mention. The M750 is comparable in most other ways to an HP that I was a...
2014 Jan 10
0
USB boot problems on Gigabyte GA-M55Plus-S3G
...sions of Syslinux). > > I suppose that I can give that a try, but it seems like we are sort of > just shooting in the dark here. No "shooting in the dark". Please, at this time use the manual method only, with the very latest Clonezilla Live. Not dd', not Unetbootin, not Tuxbox, not LiLi. Please "clean up" the USB drive and then use only the *manual* method at this time. See http://clonezilla.org/liveusb.php . Please let us know how it goes. Feedback is needed and appreciated. Regards, Ady.
2014 Jan 10
5
USB boot problems on Gigabyte GA-M55Plus-S3G
In message <BLU0-SMTP557B92590B4CC34F8318088BB30 at phx.gbl>, Ady <ady-sf at hotmail.com> wrote: >Since in all cases you get to see at least the Syslinux copyright >message, the problem doesn't seem to be related to whether your BIOS >can identify the USB disk and boot from it. I can only agree. >Some GA motherboards might identify some USB drives as
2014 Jan 11
2
USB boot problems on Gigabyte GA-M55Plus-S3G
...>> I suppose that I can give that a try, but it seems like we are sort of >> just shooting in the dark here. > >No "shooting in the dark". Please, at this time use the manual method >only, with the very latest Clonezilla Live. Not dd', not Unetbootin, >not Tuxbox, not LiLi. Please "clean up" the USB drive and then use >only the *manual* method at this time. See >http://clonezilla.org/liveusb.php . By "clean up" may I safely assume that if I dd a few megabytes worth of /dev/zero to the USB sticks, that will be sufficient for our...
2011 Aug 31
1
[LLVMdev] FP Stack overflow with inline asm
Hi LLVM hackers, when switching one of our projects to LLVM we discovered some strange behavior. We tracked the issue down to the following test case: int main() { double v = 0.84711; int r; __asm__("fistl %0": "=m"(r) : "t"(v)); return r; } The (relevant) clang generated asm looks like this: fldt 0.84711 ## InlineAsm Start fistl -4(%ebp) ## InlineAsm End