Displaying 20 results from an estimated 150 matches similar to: "Logging to Console - this one is different"
2004 Jul 23
4
shorewall 2.0.3a, (ULOG) doesn''t log anything
Dear all:
Im using shorewall 2.0.3a (debian) w/ ULOG. shorewall starts ok, and the
firewall is running, but nothing is printed on the logs.
I try, for example, to do a connection to a port that is opened on the
server but closed by the FW and I get a connection refused. If I stop
the firewall, this port is accesible from the outside.
I think I''ve followed all the steps on
2007 Oct 31
6
Autotest busted with Rspec/Rails trunk
Just upgraded to latest rails and rspec builds and my autotest doesnt
work
undefined method `before'' for Spec::Rails::DSL::RailsExample:Class
(NoMethodError)
Here''s the full trace:
http://pastie.caboo.se/112754
Any ideas?
--
Posted via http://www.ruby-forum.com/.
2020 Oct 05
2
[PATCH] device: return error for unknown chipsets
Previously the code relied on device->pri to be NULL and to fail probing
later. We really should just return an error inside nvkm_device_ctor for
unsupported GPUs.
Fixes: 24d5ff40a732 ("drm/nouveau/device: rework mmio mapping code to get rid of second map")
Signed-off-by: Karol Herbst <kherbst at redhat.com>
Cc: dann frazier <dann.frazier at canonical.com>
---
2020 Oct 06
1
[PATCH] device: return error for unknown chipsets
On Tue, Oct 06, 2020 at 06:46:35PM +0200, Karol Herbst wrote:
> On Tue, Oct 6, 2020 at 6:43 PM dann frazier <dann.frazier at canonical.com> wrote:
> >
> > On Mon, Oct 05, 2020 at 03:52:30PM +0200, Karol Herbst wrote:
> > > Previously the code relied on device->pri to be NULL and to fail probing
> > > later. We really should just return an error inside
2020 Oct 06
1
[PATCH] device: return error for unknown chipsets
On Mon, Oct 05, 2020 at 03:52:30PM +0200, Karol Herbst wrote:
> Previously the code relied on device->pri to be NULL and to fail probing
> later. We really should just return an error inside nvkm_device_ctor for
> unsupported GPUs.
>
> Fixes: 24d5ff40a732 ("drm/nouveau/device: rework mmio mapping code to get rid of second map")
> Signed-off-by: Karol Herbst
2004 Feb 17
12
Metalog and Shorewall
Hi Tom and list,
Still trying to set up Shorewall logging. I understand that Shorewall require syslog to get logging working, however I have metalog. Is this
possible to use metalog as logging facility for Shorewall? I was reading
http://www.shorewall.net/shorewall_logging.html and it describes other
method ( ULOG ). I understand that I have to compile ULOG support in the
kernel... where do I
2005 Feb 13
15
Fedora Core 3 / 2.6.9-1.667
I just installed Fedora Core 3
uname -r
2.6.9-1.667
I got the latest shorewall''s rpm:
http://www.shorewall.net/pub/shorewall/2.2/shorewall-2.2.0/shorewall-2.2.0-1
.noarch.rpm
Made my changes
Attempted to run shorewall and got:
[root@demo shorewall]# shorewall start
ERROR: Can''t find iptables executable
I haven''t seen this before.
I tried to go through all the
2020 Oct 06
0
[PATCH] device: return error for unknown chipsets
On Tue, Oct 6, 2020 at 6:43 PM dann frazier <dann.frazier at canonical.com> wrote:
>
> On Mon, Oct 05, 2020 at 03:52:30PM +0200, Karol Herbst wrote:
> > Previously the code relied on device->pri to be NULL and to fail probing
> > later. We really should just return an error inside nvkm_device_ctor for
> > unsupported GPUs.
> >
> > Fixes: 24d5ff40a732
2010 Jul 03
2
Change the frequency of a ts?
I'm trying to convert a column of a table into a ts object. The data is
monthly, so I want the ts frequency to be 12.
I did this ...
> filings.ts = as.ts(Filings.100K, frequency=12)
> filings.ts
Time Series:
Start = 1
End = 311
Frequency = 1
[1] 246.9336 305.6789 ... ...
> tsp(filings.ts)
[1] 1 311 1
> tsp(filings.ts) <- c(1,311,12)
Error in attr(x, "tsp")
2012 Oct 30
1
homebrew install R
Is there a recommended way to install R with homebrew? Will I completely lose the GUI? .r file command editor? thanks, Ty
-----
Tyler Frazier
Department of Transportation Planning and Telematics
Technical University Berlin
http://www.vsp.tu-berlin.de/
[[alternative HTML version deleted]]
2018 Jun 01
3
Centos 7 (using iptables) removed firewalld
Thank you.? I apologize for sending something that could be read.? There are more examples in there that I had commented out.
Anyway,? here is my working iptables-save.? If someone could review my output and let me know if I am missing anything and if the order of the rules are the most secure they could be.
TIA.
Steve
# Generated by iptables-save v1.4.21 on Fri Jun? 1 10:34:39
2005 Mar 10
3
SetCallerID({$NEWCALLERID})
I am trying to SetCallerID to a variable I have defined. This obviously is
wrong. It actually sets the caller ID to $NEWCALLERID. I have search
through the examples on wiki but wasn't able to find something similar to
see what I was doing wrong. Could someone tell me the correct way to
SetCallerID to a defined variable?
exten => 2125551212,5,SetCallerID({$NEWCALLERID})
exten =>
2018 Jun 01
2
Centos 7 (using iptables) removed firewalld
I assumed this was a Centos 7 mailing list and I was looking for help with IPTABLEs.I have used mailing lists before.? Copying a file to an email address didn't have that type of output.? I apologize.
First of all is this a Centos 7 Mailing list that I can ask for help or have I made a huge mistake?? IF so, should I just attach the file to the email.
I apologize for the output, I had no idea.?
2007 Sep 11
1
what am I missing
x<-seq(-1,1,length=10)
y<-seq(-1,1,length=10)
a<-matrix(c(1,2,2,1),2,2)
b<-matrix(c(2,1,1,2),2,2)
fv<-function(x,y) {
m<-x*a+y*b
t<-m[1,1]+m[2,2]; d<-m[1,1]*m[2,2]-m[1,2]^2
return((t-sqrt(t^2-4*d))/2)
}
gv<-function(x,y) {
t<-x*(a[1,1]+a[2,2])+y*(b[1,1]+b[2,2])
d<-(x*a[1,1]+y*b[1,1])*(x*a[2,2]+y*b[2,2])-(x*a[1,2]+y*b[1,2])^2
return((t-sqrt(t^2-4*d))/2)
}
2008 Mar 27
1
functions
I wrote some functions for multiway CANDECOMP, i.e. for least
squares fitting of
a_{i_1\cdots i_m}\approx\sum_{s=1}^p x^1_{i_1s}x^1_{i_1s}\cdots
x^m_{i_ms}
with arrays of arbitrary dimension. Reminded me of the good old APL
days. I could not find this in the archives, but if it's already there,
I would appreciate if someone let me know.
2008 Apr 07
0
[LLVMdev] LLVM-based IBM summer internship position
IBM is looking for a student with LLVM expertise for a research
project on optimizations for Cell. They have been in discussions with
Michel to use the Cell back end for LLVM being developed at Aerospace,
though I don't know if a final decision was reached on that (any news,
Michel?). The goal of this work is to add new (LLVM-level and/or back-
end-level) optimizations targeted at
2018 Jun 01
0
Centos 7 (using iptables) removed firewalld
Steve Frazier wrote:
> Thank you.? I apologize for sending something that could be read.? There
> are more examples in there that I had commented out.
> Anyway,? here is my working iptables-save.? If someone could review my
> output and let me know if I am missing anything and if the order of the
> rules are the most secure they could be.
> TIA.
>
Steve,
Do you have any
2018 Jun 01
5
Centos 7 (using iptables) removed firewalld
Hello,?
I hope that I can ask some questions on this mailing list about IPTables.
I am more familiar with IPTABLES instead of FIREWALLD.? I disabled FIREWALLD and installed?iptables-services.
I have put together a script that I found on the web on how to set up a good set of IPTABLES rules to keep my server as secure as possible.
I have two NICs. ETH0 and ETH1. ETHO is the internet and ETH1 is my
2004 May 13
4
IAX Freeworld
I have looked all over the site(s) for help. But heres the problem. Im
missing something.
In coming works fine from FreeWorld via IAX. But when Dialing out i get:
May 13 13:42:01 WARNING[1150495040]: chan_iax2.c:5256 socket_read: I
don't know how to authenticate iaxtel to 65.39.205.121
my IAX.conf if as follows
[general]
port=5036
register => ######:xxxxxxxxxxxxx@iax2.fwdnet.net
2015 Jan 09
0
Processed (with 2 errors): user debian-qa@lists.debian.org, affects 774889, affects 771755, unarchiving 767561 ...
Processing commands for control at bugs.debian.org:
> user debian-qa at lists.debian.org
Setting user to debian-qa at lists.debian.org (was anbe at debian.org).
> affects 774889 + xfswitch-plugin
Bug #774889 [gdm3] gdm3: fails to upgrade squeeze -> wheezy -> jessie - trying to overwrite /usr/share/gdm/BuiltInSessions/default.desktop
Added indication that 774889 affects xfswitch-plugin