search for: rota

Displaying 17 results from an estimated 17 matches for "rota".

Did you mean: rosa
2007 Jul 05
4
Load Balancing , MSN and SSL
...ip route add $P0_NET dev $IF0 table T2 ip route add $P1_NET dev $IF1 table T2 ip route add $P2_NET dev $IF2 table T2 ip route add 127.0.0.0/8 dev lo table T2 interface_interna ip route add default scope global nexthop via $P1 dev $IF1 weight 1 \ nexthop via $P2 dev $IF2 weight 1 #ROTAS DE BACKUP ip route add default via $P2 dev $IF2 metric 1 table T1 ip route add default via $P1 dev $IF1 metric 1 table T2 #ROTAS DE SERVICOS ip rule add fwmark 2 table 21 prio 20 ip rule add fwmark 3 table 22 prio 20 ip route add default via $P1 dev $IF1 table 21 ip route add default via $P2 d...
2007 Feb 08
2
Howto setup printing with Windows XP Clients, Cups and samba..
...mba/smb.conf Processing section "[netlogon]" Processing section "[profiles]" Processing section "[Temp]" Processing section "[Privat]" Processing section "[Archiv]" Processing section "[firma.in-medias-res]" Processing section "[firma.rotas]" Processing section "[firma.mcity]" Processing section "[firma.returnit]" Processing section "[install]" Processing section "[printers]" WARNING: The "printer admin" option is deprecated Processing section "[print$]" Loaded services...
2011 Apr 19
5
Check that my sqlite database populated
Hello guys, I''ve made a very simple application following the footsteps of http://guides.rubyonrails.org/getting_started.html. I managed to insert my objects (i checked the existence of inserted objects through the rails console with a simple Foo.all ) but if I run sqlite3 from command line and then run .databases I can''t see any database created. I thought I could see the
2012 Nov 09
1
lm function - na.action
How do you lm throw away excess data points. I am following the documentation with no success -- View this message in context: http://r.789695.n4.nabble.com/lm-function-na-action-tp4649075.html Sent from the R help mailing list archive at Nabble.com.
2007 May 08
0
Squid + iproute2
...ev eth0 src 192.168.2.245 table link #ip route add 192.168.0.0/24 via 192.168.0.1 table link ip route add default via 192.168.2.252 table link # tabela principal de roteamento ip route add 192.168.1.0/24 dev eth1 src 192.168.1.245 ip route add 192.168.2.0/24 dev eth0 src 192.168.2.245 # setando a rota preferencial ip route add default via 192.168.1.7 # regras das tabelas ip rule add from 192.168.1.245 table link1 ip rule add from 192.168.2.245 table link # balanceamento de link ip rule add fwmark 3 lookup link prio 3 ip route add default table link nexthop via 192.168.1.7 dev eth1 weight 1 nex...
2005 Oct 18
0
Two differente networks at the same ethernet pci adapter
...#39; # #---- # Declara gateway das conexoes #---- P1=''172.30.0.1'' P2=''10.1.1.1'' # #---- # Mascara as redes e marca os pacotes #---- $IPTABLES -t nat -A POSTROUTING -o $IF1 -j MASQUERADE $IPTABLES -t nat -A POSTROUTING -o $IF2 -j MASQUERADE # #---- # Declaracao de rotas padrao para os links #---- $IP route add $P1_NET dev $IF1 src $IP1 table T1 $IP route add default via $P1 table T1 $IP route add $P2_NET dev $IF2 src $IP2 table T2 $IP route add default via $P1 table T2 # $IP route add $P1_NET dev $IF1 src $IP1 $IP route add $P2_NET dev $IF2 src $IP2 # $IP route a...
2013 Nov 14
2
[LLVMdev] Quad-Core ARMv7 Build Slave Seeks Noble Purpose
...a separate project and I had trouble setting it up to run on ARM before. * Always have more than one buildbot on any configuration. Build time can be huge, and dev boards are notoriously faulty. I had huge problems with Panda boards in the past, to the point where I removed them all from the build rota. The odroid U2 seems more stable, but the XU has some hardware/kernel problems (randomly re-mounting partitions read-only, disabling CPUs and never re-enabling them again, cache flush between every big.LITTLE switch, amongst others). * Create boot scripts to check for those problems, plus set the...
2006 Feb 02
0
Problem with routing to multiple tables
...="10.1.1.10" NWE2="10.1.1.0/24" GWE2="10.1.1.1" PRE2="1" #--- # Tabelas de roteamento #--- L1="201" L2="202" MAIN="222" #--- # Desabilita tabela main #--- $IP rule add prio 50 table main $IP route del default table main #--- # ROTAS #--- # Link 1 = L1 $IP rule add prio 201 from $NWE1 table $L1 $IP route add default via $GWE1 dev $IFE1 src $IPE1 proto static table $L1 $IP route append prohibit default table $L1 metric 1 proto static # # Link 2 = L2 $IP rule add prio 202 from $NWE2 table $L2 $IP route add default via $GWE2 dev...
2008 Dec 17
1
ERROR: Could not find an installable distribuition the install location
Hello. I install centOS 5.1 with xen and now I am trying paravirtualize the same centOS 5.1. So, I put the install cd in cd-drive and then in a terminal I did: mount –rbind /media/CentOS_5.1/ /media/disk/ and it works. then I configured one server of NFS. In a terminal I did: mount –t nfs 10.112.33.181:/media/disk/ root/Desktop/example/ and it works. Then when I was creating the
2005 Oct 19
2
Load balance (two links in one server): why is this not working?
...; # #---- # Declara gateway das conexoes #---- P1=''200.163.208.1'' P2=''10.1.1.1'' # #---- # Mascara as redes e marca os pacotes #---- $IPTABLES -t nat -A POSTROUTING -o $IF1 -j MASQUERADE $IPTABLES -t nat -A POSTROUTING -o $IF2 -j MASQUERADE # #---- # Declaracao de rotas padrao para os links #---- $IP route add $P1_NET dev $IF1 src $IP1 table T1 $IP route add default via $P1 table T1 $IP route add $P2_NET dev $IF2 src $IP2 table T2 $IP route add default via $P1 table T2 # $IP route add $P1_NET dev $IF1 src $IP1 $IP route add $P2_NET dev $IF2 src $IP2 # $IP route a...
2013 Nov 14
0
[LLVMdev] Quad-Core ARMv7 Build Slave Seeks Noble Purpose
On Wed, Nov 13, 2013 at 8:28 PM, Mikael Lyngvig <mikael at lyngvig.org> wrote: > Hi Dmitri, > > I am not using any kind of cache (didn't even know of ccache). I have now > installed ccache. Perhaps ccache should be mentioned in the buildbot > document so that every buildbot owner knows about it? > > It is currently running Arch Linux ARM. if there are good
2011 May 30
5
rails habtm checkboxes with jquerymobile
Hi guys, I have a habtm association working properly. My application consists of both a desktop and a mobile version. My mobile version is made with jquerymobile and I would like my checkboxes in the edit form to look like the checkboxes shown in http://jquerymobile.com/demos/1.0a4.1/#docs/forms/forms-checkboxes.html. My desktop code is the following: <%= check_box_tag
2013 Nov 14
0
[LLVMdev] Quad-Core ARMv7 Build Slave Seeks Noble Purpose
...nd I had trouble setting it up to run on ARM before. > * Always have more than one buildbot on any configuration. Build time can > be huge, and dev boards are notoriously faulty. I had huge problems with > Panda boards in the past, to the point where I removed them all from the > build rota. The odroid U2 seems more stable, but the XU has some > hardware/kernel problems (randomly re-mounting partitions read-only, > disabling CPUs and never re-enabling them again, cache flush between every > big.LITTLE switch, amongst others). > * Create boot scripts to check for those pro...
2008 Apr 28
0
Special Offer on Chapman & Hall Publications
...cart/products/product_detail.asp?sku=C5459 Introduction to Probability with R Kenneth P. Baclawski, North Eastern University, Boston, MA, USA Publication Date: 1/24/2008 Catalog #: C6521 ISBN: 9781420065213 Number of Pages: 384 Based on a popular course taught by the late Gian-Carlo Rota of MIT, with many new topics covered as well, Introduction to Probability with R presents R programs and animations to provide an intuitive yet rigorous understanding of how to model natural phenomena from a probabilistic point of view. Although the R programs are small in length, they are just as...
2013 Nov 14
5
[LLVMdev] Quad-Core ARMv7 Build Slave Seeks Noble Purpose
Hi Dmitri, I am not using any kind of cache (didn't even know of ccache). I have now installed ccache. Perhaps ccache should be mentioned in the buildbot document so that every buildbot owner knows about it? It is currently running Arch Linux ARM. if there are good reasons to switch to something else, I'll be happy to do that, although I am generally very happy about Arch Linux.
2016 Apr 27
0
R Script Template
The subject of your email is missing. Perhaps you need to read the Posting Guide (again?) about attachments. Embedding your example directly in the body of the email is generally more accessible in archives than attaching it. -- Sent from my phone. Please excuse my brevity. On April 27, 2016 1:14:17 PM GMT+01:00, G.Maubach at gmx.de wrote: >Hi All, > >I am addressing this post to all
2016 Apr 27
2
R Script Template
Hi All, I am addressing this post to all who are new to R. When learing R in the last weeks I took some notes for myself to have code snippets ready for the data analysis process. I put these snippets together as a script template for future use. Almost all of the given command prototypes are tested. The template script contains snippets for best practices and leaves out the commands that