similar to: Putting nat routing into place permanently?

Displaying 20 results from an estimated 30000 matches similar to: "Putting nat routing into place permanently?"

2005 Nov 04
1
Putting nat routing into place permanently? -- service iptables save
Peter Farrow wrote: >Rc.local is used explicitly for the running of scripts after the system >has booted. >Putting your own firewall scripts in here is a good place to put them >rather than relying on "service iptables save", this is because the >visibility of changes is poor when using the "service iptables save" >some one either inadvertantly or otherwise
2005 Oct 23
4
Anyone use a Rio Cali Sport with CentOS 4.2?
My wife does and here's the problem. It automatically mounts the flash memory of the player. But it doesn't mount the SD card slot. I used Ubuntu 5.10 recently and it mounted both of them. Both as separate USB sticks. How do I get CentOS to do the same thing? Or can it not discern that two USB flash devices are plugged in? Preston
2005 Sep 08
4
Does anyone use VMWare 4.5.2 on CentOS 4?
I'm trying to use my copy and whenever I reboot I have to reconfigure everything again using vmware-config.pl. Any idea why I might have to do this? Is there something about the way services are setup under CentOS 4 or something? Preston
2005 Nov 10
4
Multi-button mice and Linux?
Does anyone here use a multi-button (as in more than 2) mouse with Linux? How well supported are they? I've had to get one recently for work. I was diagnosed with CTS and I now wear braces and use a wireless Intellimouse. Works great at work with Windows, but I'm unsure how much, if any support there is for Linux. Anyone have experience with this? Preston
2012 May 04
0
[LLVMdev] Extending GetElementPointer, or Premature Linearization Considered Harmful
Hi Preston, On Fri, May 4, 2012 at 9:12 AM, Preston Briggs <preston.briggs at gmail.com> wrote: > > which produces > > %arrayidx24 = getelementptr inbounds [100 x [100 x i64]]* %A, i64 > %arrayidx21.sum, i64 %add1411, i64 %add > store i64 0, i64* %arrayidx24, align 8 > {{{(5 + ((3 + %n) * %n)),+,(2 * %n * %n)}<%for.cond1.preheader>,+,(4 *
2007 May 03
2
Running SELinux necessary for the average user?
I'm wondering because it seems to be slowing my machine down considerably under CentOS 5. Especially the daemon they include to monitor SELinux and the program that attaches to it. I tried opening this earlier and it just sat there spinning. I want the knowledge that my machine is secure and safe. But I'm wondering if the price is worth it. Is it necessary for my machine to be fairly
2005 Oct 14
2
Anyone know why this wouldn't be valid mbox format?
Trying to get my wife's emails out of a proprietary format and into mbox for use on our local box. Doing some major file munging. In a test email the following doesn't work. (forgetting dates, email addresses, etc.) >From heraddress at herdomain.com Wed Oct 10 11:50:44 2005 -0700 Date: Wed, 10 Oct 2005 11:50:42 -0700 (PDT) This does work >From heraddress at herdomain.com Wed Oct
2005 May 09
3
Removing custom kernels?
Is this possible. I did my first one yesterday in order to get my iPod mini to work with the EL kernel. It worked well. Everything went smoothly, but I don't like what I named it. So I'd like to take one more shot at it. If I do, is there a way to remove the old one cleanly? Modules and everything. Also, if do recompile the kernel again, do I need fresh source, or can I just do a make
2015 Dec 09
2
persuading licm to do the right thing
I suppose your view is reasonable, and perhaps common. My own "taste" has always preferred machine-independent code that is as simple as possible, so GEPs reduced to nothing more than an add, etc, i.e., quite risc-like. Then optimize it to reduce the total number of operations (as best we can), then raise the level during instruction selection, taking advantage of available instructions.
2005 Sep 15
2
Capturing audio streams with Linux?
So I got a new Pocket PC this weekend (yes, you read that right, sorry, don't like the Palms on offer currently and I can at least install software on it via Windows on VMWare). One of the main things I wanted to do with it is get Audible.com again and listen to All Things Considered from NPR on the way home like I used to. Now I find out they not only don't have an agreement with Audible
2005 Nov 01
2
Installing Tomact as a service... update
So I've been trying to use this site and the daemon script here. http://www.linuxjava.net/howto/webapp/#tomcat It works so far. I mean, at least the server starts, I can get to the site, etc. So far, so good. The only problem is, for some reason when I start tomcat using root everything runs fine. When I start tomcat using this script, however, I get this.... FATAL [http-8080-Processor25]
2015 Dec 09
3
persuading licm to do the right thing
A GEP can represent a potentially large tree of instructions. Seems like all the sub-trees are hidden from optimization; that is, I never see licm or value numbering doing anything with them. If I rewrite the GEPs as lots of little adds and multiplies, then opt will do a better job (I speculate this happens during lowering). One of the computations that's hidden in the GEP in my example is
2005 Jul 26
3
Software to monitor security logs and email ISPs?
I know they have software that does this. I'm just not sure which one it is. Basically here's the scoop. I'm on a cable modem connection with Comcast. I have a firewall router and I run a firewall on CentOS as well. All the same, other computers (probably zombies or hackers) are attempting brute force attacks on a couple of ports on my computer. I've just sat and watched them for
2005 Oct 29
1
Setting up Tomcat as a service under CentOS 4?
I've found about a dozen different ways to skin this cat (no pun intended). Everything from creating a script in /etc/init.d/ to using jsvc. I was hoping someone out there, those of you out there who run Tomcat in this manner, how did *you* set this up? I can't seem to get it right. Any help would be greatly appreciated. Or even direction to an authoritative document. Preston
2015 Dec 09
3
persuading licm to do the right thing
I understand that GEPs do not access memory. They do a (possibly expensive) address calculation, perhaps adding a few values to a label and leaving the result in a register. Getting a label into a register is (to me) just like loading a 64-bit integer value into a register. It can happen in many places and it can cost a few instructions and several bytes. I'd like to see such things commoned
2012 Oct 22
4
help stored permanently
Hi, Each > help.start() generates a new tree of the R help system, somewhere in 127.0.0.1:xxx, each xxx being difeerent. This tree disappears when exiting R. How can the current help tree copied to a permanent place for reference outside a running R? This would be practical for not having to enter M-x R . TIA --Christian -- Christian W. Hoffmann, CH - 8915 Hausen am Albis, Switzerland
2015 Dec 09
2
persuading licm to do the right thing
I'm trying to make the IR "better", in a machine-independent fashion, without having to do any lowering. I've written code that rewrites GEPs as simple adds and multiplies, which helps a lot, but there's still some sort of re-canonicalization that's getting in my way. Is there perhaps a way to suppress it? Thanks, Preston On Wed, Dec 9, 2015 at 7:47 AM, Mehdi Amini
2011 Feb 16
2
fwd: fix up ARM assembly to use 'bx lr' in place of 'mov pc, lr'.
hello vorlon, got notified of your patch, will apply next days upstream unless some critiques are voiced on ml. thanks. -- maks ----- Forwarded message from Steve Langasek <steve.langasek at canonical.com> ----- Date: Wed, 16 Feb 2011 22:05:42 -0000 From: Steve Langasek <steve.langasek at canonical.com> Subject: [Bug 527720] Re: thumb2 porting issues identified: klibc uses
2008 Aug 19
3
Is there a way to save the routing table permanently?
I'm adding the default gateway to the route through "route add default gw 10.10.10.10" which is also shown in "route -n" but the problem is that as soon as I restart the network through /etc/init.d/network restart; the route sets to default one...! SO, my question is there any way to save the modified route permanently by hardcoding the changes? Thanks. -------------- next
2005 May 07
6
New to CentOS, is this a safe bet?
I know this may be a stupid place to ask, but I have to ask. I'm looking for a new Linux distro to use and support. I've been a loyal purchaser of SuSE Linux Pro for the last 3 years. I've paid my $90 loyally, in part because I wanted money to actually go to someone working on OSS, but also because I thought it was a good bargain, to get a quality, tested distro for that cost. The