Displaying 14 results from an estimated 14 matches similar to: "pxelinux"
2002 Sep 13
1
Unable to mount root fs
Hey all,
I'am able to use pxelinux to successfully boot a particular kernel and
image on various IBM PC's ex. 6287-41U and 6591-34U. However, using the same
setup (ie. dhcp, tftp, pxelinux.0, pxelinux.cfg, networkcard, bootrom,
ram memory) on an IBM 6282-73U my kernel and image decompress fine but I'am
getting a...
Kernel Panic: VFS: Unable to mount root fs on 01:01
I realize
2002 Sep 14
1
Re: SYSLINUX digest, Vol 1 #196 - 4 msgs
Hello !
Maybe passing argument root=/dev/ram0 or root=/dev/rd/0 would help ?
I use isolinux and it works in the isolinux.cfg
sylvain
> Message: 3
> Date: Fri, 13 Sep 2002 14:11:38 -0300 (ADT)
> From: Geddes <jgeddes at unb.ca>
> To: syslinux at zytor.com
> Subject: [syslinux] Unable to mount root fs
>
>
> Hey all,
>
> I'am able to use pxelinux to
2007 Apr 02
5
Aastra 480 i
Getting "no service" display on aastra 480i. Sip debug shows an "unathorized" blub when the aastra tries to register.
Some reading indicates that 1.4 firmware wants aastra.cfg and mac.cfg in /tftpboot/. There are none.
Anyone have basic config files? Or can point me to a good link? All links I have tried, that purport to have config files, are either dead or error out.
2007 Apr 18
4
[Bridge] bridge firewall problem
hello
i am a new user for this group. i am
working at a ISP. here i want to made a bridge
firewall i am using fedora core 3. i want to block a
serirs of ip address 192.16.18.0/255.255.255.0 and
want to give the accesss only
172.16.18.0/255.255.255.0. but iptables not be able
to block ip;s its passes all the ip series. i made my
machine as bridge. i think my bridge passes all the
2014 Aug 11
1
401 Unathorized
I have an asterisk 1.8.x box that intermittently returns a 401. Calls come
through the same peer all the time, from the same carrier. However
intermittently the asterisk box returns a 401.
Below is the output of a failed call (1st) and a successful call (2nd). I
can't see any difference until we get to these lines.
Bad call:
--- (17 headers 14 lines) ---
Sending to carrierIP:5060 (no NAT)
2004 Sep 08
4
WellGate 3504A with Asterisk SIP authentication and config
hey * folk,
am trying to configure a WellGate 3504A FXS SIP ATA
(http://www.welltech.com.tw/products_ea01.htm) with asterisk. i've set
up two SIP clients in sip.conf as follows:
[general]
port = 5060 ; Port to bind to
bindaddr = 0.0.0.0 ; Address to bind SIP channel to
context = default ; Default context for incoming calls
[1235]
host = dynamic
secret = somepass
context = default
type
2006 May 23
1
Monitoring FS operations
Greetings All,
Without going into the specific reasons why I need to do so, is anyone
aware of a method (or tool) of watching real-time, human-readable (or
system call print) of ext3 filesystem operations on a mounted, active
filesystem?
Excuse me if this is a duplicate question but I was unable to find any
similar ones in the archives.
Thanks in advance!
Kevin Strong
Criminal Information
2005 Jun 16
1
Sambaserver slows down, too many smbd processes
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi folks,
maybe my problem was discussed before, but I'm just too busy to browse
the whole mailinglist at the moment.
I'm running Samba 3.0.14a(sernet) on a Debian Sarge with LDAP-Backend.
After some days, the users aren't able to load their profiles from the
server. In fact, no datas can be transfered from/to the sambaserver.
The cpu
2009 Jul 23
6
SSH attacks from china
Okay, I have a server connected to the net but have not added fail2ban or
anything on top of my firewall yet.
Thought you guys might get a kick out of this one user, ip is from china,
who has got a heck of a knack for making assumptions on possible usernames.
Enjoy this..., 8000+ attempts. Scroll down for funky ones. I have no root
access enabled on this server and it is pretty bare. Just using
2013 Feb 27
1
Slow read performance
Help please-
I am running 3.3.1 on Centos using a 10GB network. I get reasonable write speeds, although I think they could be faster. But my read speeds are REALLY slow.
Executive summary:
On gluster client-
Writes average about 700-800MB/s
Reads average about 70-80MB/s
On server-
Writes average about 1-1.5GB/s
Reads average about 2-3GB/s
Any thoughts?
Here are some additional details:
2017 Jul 08
5
Error in v64i32 type in x86 backend
Thank You.
I have seen the opcode is 8 bits and all the combinations are already used
in llvm x86.
Now what to do?
On Sat, Jul 8, 2017 at 10:57 AM, Craig Topper <craig.topper at gmail.com>
wrote:
> Yes its an opcode conflict. You'll have to look through Intel documents
> and find an unused opcode. I've only added instructions based on a real
> spec so I don't know
2017 Jul 08
2
Error in v64i32 type in x86 backend
Thank you. i understood how avx512 vector instructions are written in
x86instravx512. i need to define my vector instructions so i wrote;
def VMOV_256B_RM : I<0x6F, MRMSrcMem, (outs VR2048:$dst), (ins
i32mem:$src),
"vmov_256B_rm\t{$src, $dst|$dst, $src}",
[(set VR2048:$dst, (v64i32 (scalar_to_vector (loadi32
addr:$src))))],
2019 Apr 30
6
Disk space and RAM requirements in docs
Hi,
Have anybody recently built LLVM in Debug mode /within/ space
requirements from the Getting Started doc?
https://llvm.org/docs/GettingStarted.html#hardware
> An LLVM-only build will need about 1-3 GB of space. A full build of
LLVM and Clang will need around 15-20 GB of disk space.
From my experience this numbers looks drastically low. On FreeBSD my
recent builds consumed more than
2017 Jul 08
2
Error in v64i32 type in x86 backend
Thank you;
i have changed as follows.is it fine now?
def VADD_256B : I<0xFE, MRMDestReg, (outs VR2048:$dst), (ins VR2048:$src1,
VR2048:$src2),
"VADD_256B\t{$src, $dst|$dst, $src}", [(set VR2048:$dst,
(add VR2048:$src1, VR2048:$src2))]]>;
Also here i have changed class RI to I. Does it make any difference?
On Sat, Jul 8, 2017 at 9:38 AM, Craig Topper