search for: graff

Displaying 20 results from an estimated 54 matches for "graff".

Did you mean: graef
2012 Nov 23
1
Bug?
root@graff:~# xm usb-list-assignable-devices 1-6 : ID 14dd:0002 Peppercon AG Multidevice 2-2 : ID 051d:0002 American Power Conversion Smart-UPS 3000 RM XL FW:691.16.I USB FW:7.3 root@graff:~# xm usb-hc-create bosch-w2k3-pv 1 1 root@graff:~# xm usb-list bosch-w2k3-pv Idx BE state usb-ver...
2007 Oct 29
9
Problems with mongrel on NetBSD
I seem to have a (recent) problem with mongrel on NetBSD. I''m running a development release of NetBSD (called NetBSD-current 4.99.34). When I start mongrel, it listens on the IPv6 wildcard address, but not on the IPv4 wildcard: => Booting Mongrel (use ''script/server webrick'' to force WEBrick) => Rails application starting on http://0.0.0.0:3000 => Call with
2009 Oct 20
8
Stub that returns hash values
Is it possible to create a stub that returns hash values. For example I would like to convert this: @siteItem = stub(''plmSiteItem'', :one => "uno") To something like this: @siteItem = stub(''plmSiteItem'', {''one'' => ''uno'', ''two'' => ''dos''} ) So that I can do this:
2014 Jan 21
2
After USB boot problems on Gigabyte GA-M55Plus-S3G
...usr/lib/syslinux/vesamenu.c32 /mnt/boot cat > /mnt/boot/extlinux.conf <<EOF UI vesamenu.c32 DEFAULT linux LABEL linux LINUX /boot/bzImage APPEND root=/dev/sda1 init=/bin/ash EOF umount /mnt kpartx -d "${i}" losetup -d "${i}" kvm binary.img works but not with gpt -chris graff (dean) On Tue, Jan 21, 2014 at 11:07 AM, Thomas Schmitt <scdbackup at gmx.net> wrote: > Hi, > > hpa wrote: > > LBA = (C * H' * S') + (H * S') + (S - 1) > > [...] > > Start LBA 63 = CHS 0 1 1 > > End LBA 15794175 = CHS 982 254 63...
2014 Feb 01
5
xorriso or genisoimage syntax assistance
Could someone help me get the syntax for `genisoimage' and/or `xorriso' correct? Apparently it is not in many linux distros so below my little HOWTO shows how to compile it. ( which adds tons of crap that can go wrong) mkdir -p ISO_root/isolinux cp /usr/lib/syslinux/[i,m,v]* ISO_root/isolinux cat > ISO_root/isolinux/isolinux.cfg << EOF UI menu.c32 label isolinuxtests EOF # Most
2014 Jan 21
0
After USB boot problems on Gigabyte GA-M55Plus-S3G
btw, that works with mkfs.vfat as well. just have to use syslinux with a syslinux.cfg file instead of extlinux with an extlinux.conf. On Tue, Jan 21, 2014 at 11:58 AM, Dean Graff <graff97 at gmail.com> wrote: > the closest i have gotten to a consistent way to test a MS-DOS filesystem > setup is: > > dd if=/dev/zero of=binary.img bs=1M count=500 > i="$(losetup -f --show binary.img )" > parted binary.img mklabel msdos -s -m > dd if=/usr/l...
2014 Jan 22
3
Even more (U)EFI questions
I have not looked into it all that much. But seems that UEFI basically allows booting without a bootloader. Here is some gentoo wiki info in it: http://wiki.gentoo.org/wiki/EFI_stub_kernel And Greg Kroah-Hartman talking about it a bit: http://kroah.com/log/blog/2013/09/02/booting-a-self-signed-linux-kernel/ I am looking forward to making a little HOWTO, for this subject and also for using
2007 Oct 23
11
validates_confirmation_of not working?
I just can''t get validates_confirmation_of working for the life of me!... It''s not the first time I''m having problems with it but I just never understand why!... This time I pretty much followed *exactly* the example in Agile Rails Development and still...it just won''t work! I put 2 different passwords in the form and it doesn''t trigger an error,
1998 Jan 07
1
R-beta: Design of experiments in R?
Hello R-helpers, I was wondering if anyone is porting S lib packages for design of experiments: conf.design, glim, graff(all from statlib)? I was able to change the format of S packages into R (including docs). In conf.design, by W. Venables, sort.list function is missing from R. I just put sort.list <- sort, but I got more error messages. Before doing more work, would like to know if this already done? Regards,...
1998 Jan 07
1
R-beta: Design of experiments in R?
Hello R-helpers, I was wondering if anyone is porting S lib packages for design of experiments: conf.design, glim, graff(all from statlib)? I was able to change the format of S packages into R (including docs). In conf.design, by W. Venables, sort.list function is missing from R. I just put sort.list <- sort, but I got more error messages. Before doing more work, would like to know if this already done? Regards,...
2013 Mar 05
4
searching model and has_one association
Howdy. I have these models: User, field "mundane_name" user has_one :instructor_profile (may or may not exist) instructor_profile, field "sca_name" belongs_to :user I would like to craft a search on these fields, which is effectively this, but in one go: matching_users = User.where("mundane_name ILIKE ?", "%#{target}%") matching_profiles =
2007 Oct 15
6
SQL injection with :order, :limit, :group
I know how to avoid SQL injection attacks when you use :conditions User.find :first, :conditions => ["login=?", params[:username]] but how about with :order, :limit or :group? # uh-oh...spaghetti-oh User.find :first, :order => "login; delete from users; select * from users" Pat --~--~---------~--~----~------------~-------~--~----~ You received this message because you
2014 Jan 19
2
USB boot problems on Gigabyte GA-M55Plus-S3G
...m program # 2) compile that program with `nasm' # 3) convert resulting .bin to a .img with `dd' # 4) boot the reulting "hello.img" with qemu/kvm # I think this qualifies as a bootloader, sort of # sincerely hope it helps address Mr. Guilmette curiousity # -chris graff printf ' BITS 16 jmp main nop main: mov ax, 07C0h add ax, 288 mov ss, ax mov sp, 4096 mov ax, 07C0h mov ds, ax call PrintHelloWorld jmp .InfiniteLoop .InfiniteLoop: jmp .InfiniteLoop HelloWorld db "Hello World Bootloader !!", 0x0d, 0x0a,...
2007 Oct 24
3
Bizarre log file permissions
When I create a new app with the rails command, it creates a log directory. You must chmod that to 666 according to the error message I get whenever anything (like script/generate) tries to log a message. Fine ... ... But, what the hell is this about??? $ ls -la log/ ls: cannot access log/.: Permission denied ls: cannot access log/..: Permission denied ls: cannot access log/development.log:
2014 Jan 21
4
After USB boot problems on Gigabyte GA-M55Plus-S3G
On 01/21/2014 12:22 AM, Thomas Schmitt wrote: > >> If we take the ENDing CHS values as valid: >> 982 / 254 / 63 >> and we calculate the corresponding LBA: >> ( ( 982 + 1 ) >> x ( 254 + 1 ) >> x ( 63 ) ) >> - 1 >> ___________ >> 15'791'894 > > Is this calculation generally valid ? It seems to assume that > the
2009 Feb 26
11
OpenSSL::Cipher decrypt returns 'wrong final block length'
I just want to encrypt a string submitted through a form before saving it to the DB. And then decrypt it again when I need to retrieve and use it. Im trying to use the OpenSSL::Cipher library. I have the following module for encryption/decryption [code] require ''openssl'' module AESCrypt # Decrypts a block of data (encrypted_data) given an encryption key # and an
2007 Nov 10
1
Upgrade on windows to 1.1
Attempting remote update of mongrel Select which gem to install for your platform (i386-mswin32) 1. mongrel 1.1 (java) 2. mongrel 1.1 (mswin32) 3. mongrel 1.1 (ruby) 4. mongrel 1.0.4 (ruby) 5. mongrel 1.0.4 (mswin32) 6. Skip this gem 7. Cancel installation 2 > ERROR: While executing gem ... (OpenURI::HTTPError) 404 Not Found This is using the NetBean IDE''s ''ruby
2014 Jan 20
0
USB boot problems on Gigabyte GA-M55Plus-S3G
In message <CAL9Ac2TasS6RfoC5i-oeOh32r+h0QBpVCSNhQMG1MN_KmAr6mw at mail.gmail.com> Dean Graff <graff97 at gmail.com> wrote: ># I think this qualifies as a bootloader, sort of ># sincerely hope it helps address Mr. Guilmette curiousity Yes. Thank you. It had not occurred to me that ye good olde BIOS is/was still there, and that it could actually be relied upon to do useful th...
2014 Jan 22
0
Even more (U)EFI questions
Am 22.01.2014 15:25, schrieb Dean Graff: > I have not looked into it all that much. But seems that UEFI basically > allows booting without a bootloader. It does. In fact I usually use preloader.efi (with keytool.efi and hashtool.efi for secure boot) and gummiboot.x64.efi to boot EFI stub kernels on x86_64. But until short time a...
2014 Jan 24
0
Advice/directions to users of Syslinux
Hi, Dean Graff wrote: > Also, I am trying to use the syntax: > > mkdiskimage -z -F -4 binary.img 1000 > > To get that zip drive geometry for my images and increase the > portable ness of their boot ability. Will this work, to make the zip > drive geometry and then dd or cat this to the 'm...