Displaying 20 results from an estimated 1000 matches similar to: "Syslinux boot from a partition on sub stick with GPT label"
2008 Jul 06
1
Patch for GRUB Legacy to chainload SYSLINUX from logical partitions
Inspired from a similar patch posted on grub-devel for Grub2 I immersed
myself into the code of Grub Legacy and came up with this absurdedly simple
patch to allow syslinux or other bootloaders residing in logical partition
to be chainloaded from GRUB Legacy (0.9x).
Hoping it to be of help, regards
Fulvio Scapin
-------------- next part --------------
A non-text attachment was scrubbed...
Name:
2010 Dec 30
3
Boot Error GPT partition
Hi all,
I was using grub2 for booting Archlinux x86_64 in my GPT
Internal HDD (/dev/sda) then I switched to syslinux/extlinux. It was
working fine but suddenly it staring showing "Boot Error" message on
screen. I googled for a solution and tried all syslinux versions from
4.04-pre4 down to 4.03-stable but non of them worked. I don't know
what suddenly changed caused this
2016 Feb 05
3
[PATCH] inspect: get windows drive letters for GPT disks.
This patch updates the guestfs_inspect_get_drive_mappings API call to
also return drive letters for GPT paritions. Previously this worked
only for MBR partitions. This is achieved by matching the GPT partition
GUID with the info stored in the blob from
HKLM\SYSTEM\MountedDevices\DosDevices keys. For GPT partions this blob
contains a "DMIO:ID:" prefix followed by a 16 byte binary GUID.
2016 Feb 06
1
[PATCH v3] inspect: get windows drive letters for GPT disks.
This patch updates the guestfs_inspect_get_drive_mappings API call to
also return drive letters for GPT paritions. Previously this worked
only for MBR partitions. This is achieved by matching the GPT partition
GUID with the info stored in the blob from
HKLM\SYSTEM\MountedDevices\DosDevices keys. For GPT partions this blob
contains a "DMIO:ID:" prefix followed by a 16 byte binary GUID.
2007 Apr 18
7
[Bridge] Passing vlan tagged packets through linux bridge
> Use an Intel pro/100 or pro/1000 driver..they are known to
> work with VLANs.
>
> I guess it's also possible that it's a problem in the
> bridging code, so try the latest kernel
> as well...
I compiled the latest 2.6.19 kernel and tested it with two
3COM 3c905c fast ethernet interfaces which work fine with
vlan 802.1q tagging, but when I have added the eth0 and eth1
2016 Feb 05
2
[PATCHv2] inspect: get windows drive letters for GPT disks.
This patch updates the guestfs_inspect_get_drive_mappings API call to
also return drive letters for GPT paritions. Previously this worked
only for MBR partitions. This is achieved by matching the GPT partition
GUID with the info stored in the blob from
HKLM\SYSTEM\MountedDevices\DosDevices keys. For GPT partions this blob
contains a "DMIO:ID:" prefix followed by a 16 byte binary GUID.
2007 Apr 18
2
[Bridge] large packet size doesn't work
Hi,
I have just configured a Linux box with kernel 2.6.16.7 and configured two
ethernet interfaces (with MTU 1500) in bridge mode. CONFIG_BRIDGE_NETFILTER
is enabled.
The problem is that ping -s 1500 192.168.0.2 doesn't work from 192.168.0.1
if the systems are separated by the bridge. Normal ping with smaller packet
size works ok.
What is wrong?
Best Regards
Fulvio Ricciardi
2002 Mar 13
2
Need util to resize parition (Off Topic)
Hi all,
Sorry to post OT but I'm a bit stuck and I thought someone may know the
answer.
Originally I installed Red Hat 5.2 with 2 paritions, boot and root. I
upgraded to Red Hat 6 (kept the original filesystem) without a problem
some time ago, but now I want to upgrade to 7.2. When trying to install
the upgrade it tells me that the boot parition isnt big enough (by about
90k!) so I thought
1998 Oct 28
4
Anyone resolved "failed to lock SMB passwd file"?
Hi all.
I'm experiencing long connect delays due to password file locking
errors. For each connection samba logs the following errors:
do_pw_lock: failed to lock SMB passwd file.
mod_smbpwd_entry: unable to lock file
/usr/local/samba-1.9.18p10/private/smbpasswd
In the archives I found some other messages reporting the problem (on
May this year), but no solution. Did I
2004 Feb 15
1
linear regression of data with standard deviation
Hello everyone,
I know that to calculate the linear regression between x and y I
have to use the function "lm".
But how to do if x and y have a standard deviation like in the
following example?
How to compute the chi square test in this case?
Thank you,
Fulvio.
example:
x +- dx
5 2
13 4
17 4
23 6
y +- dy
6.3 0.6
9.2 0.9
14 1
21 4
2004 Feb 21
3
saving variables created by functions in the workspace
Hello ,
just a simple question from a beginner:
I write the function:
plotsinx <- function()
{
x<-seq(0,2*pi,0.01)
sinx<-sin(x)
plot(sinx)
}
I recall it:
plotsinx()
and the plot works properly.
but then in the workspace if I want to look at the
values of sinx the following error is displayed:
Error: Object "sinx" not found.
How to save the variables created by the function on
2004 Mar 03
3
plot(x,y) with errors
Dear all,
I have 2 variables,
x<-c(1,2,3,4,5,6,7,8,9,10)
y<-c(1.3,2.5,4.6,5.3,5.9,6.7,7.4,8.5,9.4,10.4)
each point of the y variable has an error:
erry<-(0.2,0.3,0.2,0.1,0.4,0.2,0.3,0.4,0.3,0.2)
how to plot(x,y) with the errors segments?
Thank you,
Copex
---------------------------------
[[alternative HTML version deleted]]
2004 Mar 08
2
getting the std errors in the lm function
Hello,
I have a simple question for you:
making:
mylm<-lm(y~x)
summary(mylm)
I get the following results:
******************************************************
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 16.54087 0.19952 82.91 <2e-16 ***
x[1:19] -2.32337 0.04251 -54.66 <2e-16 ***
******************************************************
2004 Feb 23
2
deleting elements from an array/object
Hello,
I created a simple histogram with:
myHist<-hist(myData)
the object myHist now has two arrays (among the others):
myHist$mids
myHist$counts
Since myHist$counts contains some "0", and I want to calculate the linear fit among myHist$mids and log(myHist$counts), I want remove the elements of both arrays where these "0" occurs.
which are the possible solutions to
2013 Jul 30
3
syslinux 6.01 boot into GPT EFI hdd
How to boot from syslinux 6.01 over PXE (syslinux.efi) into an EFI
installed GPT system on a hdd?
Via localboot 0 it doesn't work. (no output)
Also via chain.c32 hd0 1 it doesn't work.
Errormessage:
Can not find MBR magic, treat hdd as raw disk.
Stop booting.
1998 Oct 29
1
Anyone resolved "failed to lock SMB passwd file"? (PR#10819)
Fulvio.Corno@polito.it wrote:
>
> I found the (possible) source of the error, in smbpass.c line 620+
....
>
> If no entry is found, the procedure returns without releasing the lock.
> I modified the last statement as:
>
> if (!found_entry) /* line 707 */
> {
> fclose(fp);
> pw_file_unlock(lockfd);
>
1999 Jul 30
1
3D scatter plot
Hi,
I'd like to know if is it possible to make a 3D scatter plot (x y z) using R.
In the on-line help and in the help mailing list I found only ways in which
plot surfaces.
Thanks for the help
fulvio
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2008 Apr 10
2
variable containing name of current module?
Does puppet export a variable containing the name of the module
currently being processed? That is, if i''m reading the file
"modules/ntp/manifests/whatever.pp", is there any puppet variable
containing the string "ntp"?
That''s the entire question --- here''s the context in case it helps:
I have a wrapper function which implements a search path for
2016 Feb 05
0
Re: [PATCH] inspect: get windows drive letters for GPT disks.
On Fri, Feb 05, 2016 at 12:15:32PM -0500, Dawid Zamirski wrote:
> This patch updates the guestfs_inspect_get_drive_mappings API call to
> also return drive letters for GPT paritions. Previously this worked
> only for MBR partitions. This is achieved by matching the GPT partition
> GUID with the info stored in the blob from
> HKLM\SYSTEM\MountedDevices\DosDevices keys. For GPT
2007 Jul 15
2
Centos on a Flash drive and Micro drive
I am considering putting together a 'micro server' that I can easily
travel with. I am seriously considering the decTOP, as at $99 (plus the
cost of a 256MB SIMM) is amazingly priced.
But I want to run on batteries, so trash a real hard drive. I have a
couple of IDE to Compact flash adapters that support 2 flash cards. So
I was considering a 4Gb (or even 2Gb) cheap real fash card