similar to: C5: correct place for routing scripts?

Displaying 20 results from an estimated 8000 matches similar to: "C5: correct place for routing scripts?"

2009 Mar 17
1
How to get usb storage under /media in runlevel 3?
Hello I have previously used Centos 4.x in runlevel 3, when I plug in my usb storage device/cd in cd-rom, it is shown under /media, for example /media/MyUsbStick. Now in Centos 5.2, when I insert usb storage device, nothing is shown under /media (runlevel 3). When I have runlevel 5 and X running, usb stick / cdrom is automounted fine. I can mount the stick using /dev/xxx device, but would
2012 Dec 12
1
/usr/src/sys/conf/newvers.sh, SYSDIR set to wrong directory.
Hello, My 9-STABLE buildworld broke in a very inexplicable way, I was getting an error on /usr/src/include/osreldate.h that I couldn't figure out until I started looking at the sys/conf/newvers.sh and what it does. It turned out that the thing that broke my buildworld was having .git directory at the root directory of the system because I recently started using GIT to track the configuration
2013 Jun 19
2
sshd didn't run after upgrade to FreeBSD 8.4
The version of sshd in FreeBSD 8.4 is not backward compatible with older version from 8.3. OpenSSH_5.4p1 (on FreeBSD 8.3) OpenSSH_6.1p1 (on FreeBSD 8.4) # sshd -t /etc/ssh/sshd_config line 19: Missing argument. On line 19, there is: VersionAddendum It was OK in older versions. It will remove any default text appended to SSH protocol banner (for example 'FreeBSD-20120901'). On
2013 Feb 07
2
CLANG and -fstack-protector
Hello, Does the -fstack-protector option work on CLANG 3.1 and 3.2? There is thread on FreeBSD forums about the stack protector and ports and I'm wondering if it's possible to use the -fstack-protector option with CLANG. http://forums.freebsd.org/showthread.php?t=36927 -Kimmo
2013 Nov 12
4
freebsd-upgrade
hi all. it was happened that i have no upgrade my system long time. Before that i used for upgrading "classic" way. make buildworld make buildkernel make installkernel mergemaster make installworld But in current moment as i can see the upgrading is totally changed. As i understand commands sequence is next: #freebsd-update fetch #freebsd-update install #freebsd-update upgrade -r
2010 Mar 23
3
barplot (stacked)
Dear all, I want to draw a barplot with the following data: [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [1,] 110.0675 118.4167 117.16 109.735416 101.6312 104.0312 101.8263 99.38541670 114.2613 [2,] 0.0000 0.0000 0.00 1.658333 0.0000 0.6250 0.0000 0.05208333 0.0000 [,10] [,11] [,12] [,13] [,14] [,15] [,16]
2013 Jun 13
1
zpool labelclear destroys GPT data
When i use zpool labelclear, it wipes the whole disk including gpt data. So the whole disk is empty and i need to create the gpt partitions again. Is this supposed to work like this? The man page suggests that it only wipes the ZFS metadata. zpool labelclear [-f] device Removes ZFS label information from the specified device. The device must not be part of an active pool
2024 Feb 26
1
igraph_vertex
Hi, a quick additional note: try "edge.width= E(.)$weight" instead of the current "edge.width= network". Seems to work and makes a visible difference... HTH, Kimmo su, 2024-02-25 kello 19:11 +0000, Kimmo Elo kirjoitti: > > Hi again, > > your code is still not reproducible without modifications, but I > succeed in getting the data straight. All
2007 Jun 22
3
Routing NDAS ?
Hi, I believe ndas devices (http://www.ximeta.com/web/technology/) use raw Ethernet frames, as they require no tcp/ip configuration, the client finds and authenticates with a code that is different for each device sold, like a network mac address. My pc is on a different segment to the ndas devices that we have, the two segments are linked by a linux box that is doing routing and proxy arp, can
2001 Apr 11
1
Problems with NT logons, Samba as PDC
Hi! We're using Samba as PDC, and recently had a strange crash on the system (none of the NT-machines authenticated anymore). I re-created the user database and passwords on the server (TurboLinux 2.2.14-5, with Samba 2.0.6 & 2.1alpha for auth.) and also re-newed the profiles making 'em local on the NT-workstations. Sometimes when the NT-PC gets rebooted, I can't authenticate it
2015 Jul 19
3
Multiple network cards - routing issue?
On Sat, 18 Jul 2015 22:37:30 -0700 Gordon Messmer wrote: > On 07/18/2015 10:12 PM, Frank Cox wrote: > > Interesting. But since it's still exactly the same, it's still not > > working; it still fails in exactly the same way too. > > Yes, but that means you need to start with the standard troubleshooting > stuff. Do you have link? Is the Ethernet cable working?
2008 Jan 16
3
Grouping data
Hi, I am quite new to R (but like it very much!), so please apologize if this is a too simple question. I have a large data frame consisting of data from a survey. There is, for example, information about age and education (a numeric value from 1-9). Now I would like to extract the total amount of each type of education within different age groups (e.g. from 18 to 25, from 25 to 35 etc.).
2024 Oct 25
1
readLines() and unz() and non-empty final line
Hi, you could use "scan" instead, it seems to work fine also when wrapped around "unz". Or, alternatively, you could use "unzip" instead of "unz". It works as expected, i.e. reads the last incomplete line and throws a warning about this. So it seems to me that "unz" creates a non-blocking connection, whereas "unzip" creates a
2015 Jul 19
2
Multiple network cards - routing issue?
On Sat, 18 Jul 2015 21:34:27 -0700 Gordon Messmer wrote: > Does the system work correctly if you don't run those "ip route" commands? It's exactly the same. And what I mean by exactly the same is EXACTLY the same. I rebooted the system which should clear out my route commands and whatnot, and discovered that everything (route -n and ip route show and whatnot) are exactly
2024 Feb 25
1
igraph_vertex
Hi again, your code is still not reproducible without modifications, but I succeed in getting the data straight. All read.csv-command are missing 'sep="\t"', it is need to read you tsv-data. And it could be more reproducible if you used e.g. --- snip --- aes<-read.csv(text=" A.A B.B C.C D.D E.E F.F A.A 0 0 5 5 5 5 B.B 4 0 1 1 1 1 C.C 5 5 0 5 4 2 D.D 5 0 5 0 5 3 E.E
2024 Feb 05
1
Help
Hi, the command line with 'text' should be: text(-8,-8, expression(R^2 * " = 0.62, r = 0.79, N = 161"), cex = 2 ) Best, Kimmo su, 2024-02-04 kello 17:16 +0100, Jibrin Alhassan kirjoitti: > Here is the script I used to plot the graph indicating the text I > wanted to > insert. The line in the script that I have issues with is: text(-8,- > 8, > "R^2=?
2004 May 13
1
How to disable changing of modification times on file access?
Greetings, I just upgraded from 2.2.3 (or whatever Debian stable has) to 3.0.4 (using the Debian packages available via the Samba mirrors). I'm running it on Debian GNU/Linux stable x86, kernel 2.4.25. I noticed that whenever I open a file using a Windows (I'm using Windows 2000) application, Samba changes its modification time to the current time. The old modification time is restored
2004 Apr 22
2
Accepting packets with frame dest.addr. ff:ff:ff:ff:ff:ff for routing
Hi all, do anybody know, whether is it possible to route packets incoming to ethernet interface as broadcasts? ~~~~~|WirelessDevice/WD|-----eth0-|LinuxRouter/RT|-eth1---(10.18.63.0/24) tcpdump: listening on eth0 0:a:e6:ac:e8:7a ff:ff:ff:ff:ff:ff 98: 192.168.7.11 > 10.18.63.249: icmp: echo request (DF) 0:a:e6:ac:e8:7a ff:ff:ff:ff:ff:ff 98: 192.168.7.11 > 10.18.63.249: icmp: echo request
2005 Dec 16
2
routing in the same subnet
Hi, I have IP 64.10.12.64/26 (example) and there''s gateway 64.10.12.65 and I want doing something like this: -------------------------------------64.10.12.65 GW --------------------------- ROUTER ----------- --------------------clients eth0 64.10.12.66 eth1 64.10.12.66 from 64.10.12.67 to 126 255.255.255.192
2012 Mar 08
1
Adding mean line to a lattice density plot
Hi! I have used the following command: densityplot(~PV1CIV, groups=SGENDER, data=ISGFINC2, lwd=2, col=1, lty=c(1,2), pch=c("+","o"), key=list(text=list(lab=levels(ISGFINC2$SGENDER), col=1), space="bottom", columns=2, border=T, lines=T, lwd=2, lty=c(1,2), col=1), ref=T, plot.points=F) to produce a lattice density plot presenting the distribution of