similar to: Smart Boot Manager question

Displaying 20 results from an estimated 100 matches similar to: "Smart Boot Manager question"

2005 Jan 25
1
feature request: gzip support in syslinux itself
HPA, is it possible to add GZ support in syslinux itself? Some standalone software compresses very well, but is not compressed. Example is the Memtest86+ binary (90KB uncompressed --> 35KB gzip'd) and maybe Smart Boot Manager (gzip'd COM32 binary instead of normal COM32 binary?). I'm using both on a simple bootdisk, and all space savings are welcome. a workaround could ofcourse
2007 Apr 11
3
Large Floppy Images
I have periodically been trying to get memdisk to boot images larger than your average 1.44Mb floppy and have always been unsuccessful. I cannot boot anything greater than 1.44Mb. The systems I'm attempting to do this with are not too old but they are not recent either. One is a Asus P5A and the other is a Intel SE440BX both with the most recent bios firmware patches available applied. If
2017 Jul 28
4
R Programming help needed - Returning dataframes + 2 Variables dynamically
c() is used for constructing vectors. Or in other words using the method c(x,y) provides a vector of length 2 (hopefully). Therefore, you are pushing a single vector to your function and not two arguments as you want. It should be Logic_fn(x,y) not Logic_fn(c(x,y)). Furthermore, i would recommend reading up on how function constructs work. Two return statements within a function are redundant
2017 Jul 28
0
R Programming help needed - Returning dataframes + 2 Variables dynamically
Hi, That was very useful information. Thanks. But still I am not able to get the desired output with updated code. Kindly help if you have any further thoughts ... Updated code : x <- 0 y <- 0 Logic_fn <- function(x,y){ print("Passed Values") print(x) print(y) x <- x + 1 y <- y + 1 print("After addition :") print(x) print(y) test_data <- rbind(x,y)
2017 Jul 28
1
R Programming help needed - Returning dataframes + 2 Variables dynamically
The returned values are in the list you assign to test_data, the original x and y are not modified, i.e the returned value for x will be test_data[[1]] and for y will be test_data[[2]]. Using the same variable names in the function and test is perhaps what is leading to confusion. > On 28 Jul 2017, at 09:13, Vijaya Kumar Regati <VijayaKumar.Regati at m3bi.com> wrote: > > Hi, >
2017 Jul 28
2
R Programming help needed - Returning dataframes + 2 Variables dynamically
Hi, Can someone please help me on below issue I am facing : I am trying to play with returning a dataframe+2 variables using a fn. But facing an issue : Error in Logic_fn(c(x, y)) : argument "y" is missing, with no default This is the code I am using : x <- 0 y <- 0 Logic_fn <- function(x,y){ x <- x + 1 y < y + 1 test_data <- rbind(x,y) test_data <-
2018 Jun 30
4
Developed an issue with Samba File Server integrated with Samba-AD
Hi, We have been using Samba File Server (Version 4.3.11 Ubuntu 14.04 LTS) for quite sometime now. We recently installed Samba-AD (Samba AD Version 4.7.6) and made the file server a member of the Domain. Everything was fine till around 11:15 am yesterday. We just added one more share folder and gave access to three users and restarted Samba File Server services - smbd, nmbd and winbindd -
2015 Sep 21
1
Reg: Virsh managedsave Failing
Hi All, We are trying to do "virsh managedsave" on a VM but it is failing with the following error. libvirtError: operation failed: domain save job: unexpectedly failed^M libvirt and qemu versions are as follows: libvirt-1.1.1-29.el7.x86_64 qemu-kvm-1.5.3-60.el7_0.11.x86_64 VM is provided with a small pxe image such that it pxe boots from a remote server. VM doesn't have any
2012 Sep 12
8
Round off method in 1.8.7
Hi all i am trying to use round method if have a value 2.08 i want it as 2.1 and it worked in 1.9.2 but not in 1.8.7 is there any other way of doing it. USING 1.9.2 1.9.2p320 :001 > 2.08.round(1) => 2.1 1.9.2p320 :002 > 2.04.round(1) => 2.0 USING 1.8.7 irb(main):001:0> 2.08.round => 2 irb(main):002:0> 2.08.round(1) ArgumentError: wrong number of arguments (1 for
2010 Jan 19
0
RSPerl help.
Dear Sir, I am Vijaya, working as a research assistant in one small research organisation named IBAB in India. Here is my problem, after installing RSPerl in linux, I tried to test it by executing test.pl program which is present in RSPerl/script directory but I am getting the following error Can't load '/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/R/R.so'
2010 Jan 22
0
[Fwd: RSPerl help.]
Dear Sir, I am Vijaya, working as a research assistant in one small research organisation named IBAB in India. Here is my problem, after installing RSPerl in linux, I tried to test it by executing test.pl program which is present in RSPerl/script directory but I am getting the following error Can't load '/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/R/R.so'
2007 Apr 18
1
Linux Equivalent of SetFilePerm() api
Hi everyone, We are trying to port our own windows application to SUSE linux.Our application uses SetFilePerm() api defined in commondll.dll.We would like to know whether there is a linux equivalent of windows commondll.dll in wine... If not then what could be the possible alternative to make this api function exactly as it does in windows. Waiting for an early reply, Thanks and Regards,
2005 Aug 11
7
Booting disk images with syslinux?
Is it possable to boot a diskimage with syslinux? So often I run into bios upgrade disks images or can easily create a disk image and would like an easy way to just boot these images. I know isolinux does this and I vagely remember using it to make a bootable windows 95 cd back in the day. It worked to. It would be nice if I could just copy the disk image to a usbstick and use syslinux to boot
2004 Dec 09
8
isolinux: Extremely broken BIOS detected
isolinux: Extremely broken BIOS detected Yoper 2.1 --------- ISOLINUX 2.11 2004-08-16 isolinux: Loading spec packet failed, trying to wing it... isolinux: Extremely broken BIOS detected, last ditch attempt with drive = 9F isolinux: Disk error 01, AX = 4209, drive 9F Boot failed: press a key to retry... Helix 1.5 --------- ISOLINUX 2.04 (Debian, 2003-06-06) isolinux: Loading spec packet failed,
2010 Apr 01
1
Factorial regression with multiple features: how to remove non-significant features?
Hello all, I am trying to do factorial regression using lm() like this (example): model<-lm(y ~ x1 + x2 + x3 + x4 + x1*x2*x3*x4) The final term 'x1*x2*x3*x4' adds all possible interactions between explanatory variables to the model. i.e. x1:x2, x1:x2:x3, etc, etc. Now, the issue is that some of the interactions are significant and some are not. I can manually remove
2005 Aug 24
2
MEMDISK bug in Syslinux 3.10
MEMDISK included in the freshly released Syslinux v3.10 is unfortunately broken. v3.09 works properly. Scenario: Isolinux --> MEMDISK --> FDBOOT.IMG (FreeDOS 360KB diskette image). Then try to access drive B: , which normally is your first diskette drive with driveletter A:. However, in this case MEMDISK occupies A:, and real diskdrive becomes B: Bug: when accessing B:, you're asked
2006 Apr 10
1
Issues with aacraid
Hi there, I'm currently trying to install a server with Centos 4.3 x86_64. I have issues installing drivers from a Driver disk, I got a driver(2810SA) from the Adaptec site, I started it up with "linux dd" It reads the disk fine .... I can see the aacraid module in the list but as soon as I choose it. Then I get a screen saying "Do you wish to load more Driver Disks?" I
1999 Jul 16
5
Samba for VMS
I just installed Samba for VMS (1.9.17p4) on a DecServer 1000A running VMS 7.1 The University Network is primarily NT Server 4.0 SP5. My experience is with Netware and NT, not with VMS, but I have the luck of supporting the system..... My main question is about Encrypted Passwords.....Does this release of Samba support them, or do I have to modify the clients who want access to our Alpha to
2016 Mar 07
2
Module Versioning
Pete Batard via Syslinux <syslinux at zytor.com> writes: > One solution to avoid that would be to embed in Rufus all possible > .c32 modules from Syslinux, alongside with the 'ldlinux.sys' version > we have, and replace them on the USB. Why not install instead an arbitrary version of Syslinux and replace all .c32 files with the modules of the installed version? --
2003 Feb 18
2
syslinux booting problem with 3Com PXE server
I use 3Com's PXE server to deploy the RedHat Linux network boot disk for an ftp install. I have done this for RedHat 7.2 and 7.3. I followed the same procedure I used for the other RedHat boot disks using the RedHat 8.0 boot disk and syslinux didn't work. Syslinux boots the system, gets the boot: prompt and dies. The error message is can not find ramdisk image and then cannot find