Displaying 20 results from an estimated 600 matches similar to: "Subnet Browsing, Halfway There"
1999 Sep 25
0
HELP! multiple subnets/ network neighborhood browsing
We have the following Network:
+------------Router-----------+
| |
| |
| |
--Network (A)-- ---Network (B)---
10.1.1.1/24 10.1.2.1/24
Workgroup=NET1 Workgroup=NET2
Win9x, PC (A)
2019 Apr 26
2
UEFI and PXE
> Just set up ISC DHCP on fresh CentOS 7 install and followed the redhat
> guide linked in this thread.
> Did what I thought was correct and duplicated the OPs problem.
> /me scratches head. . . off to `tcpdump -vv -nn -i ens192`. . . packets
> never lie. . .
> Vendor-Class Option 60, length 32:
> "PXEClient:Arch:00007:UNDI:003000"
>
> d'oh; I
1999 Dec 16
0
Win9x printer automatic installation
Hi everyone,
I've had automatic printer driver installation running fairly nicely
for a while now, but getting the drivers for your newest printer to
automatically install completely is a pain in the neck.
Basically, everything works except for adding a new section to
win.ini, and a registry entry for the printer. All the driver
files get copied over, and the printer appears as one would
2010 Apr 07
6
using ipoib with xcp
Hello,
I have been playing with the XCP for a while now, and must say I''m very
exited about the technology. I had no prior experience with Xen so it has
taken me a while to understand the concepts, but now I feel most important
issues are solved and I''ve purchased some hardware to build my (tiny) cloud
on.
The box is a Supermicro 1026TT-IBXF, so I have 2 x Ethernet and 1 x
2019 Apr 27
0
UEFI and PXE
Once upon a time, isdtor <isdtor at gmail.com> said:
> 11:06:51.413549 IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 390)
> 10.1.2.2.67 > 255.255.255.255.68: [udp sum ok] BOOTP/DHCP, Reply, length 362, xid 0x4007adc6, Flags [Broadcast] (0x8000)
> Your-IP 10.1.2.57
> Server-IP 10.1.2.1
2001 Apr 11
2
smbpasswd 2.0.7-3 matters (with smbpasswd & smb.conf...)
My message is first in english (hope you'll
understand it), et en fran?ais pour ceux qui le
causent.
--- ENGLISH ---
Hi everybody,
I've got a matter with my Samba server supplied by
Debien 2.2r0. testparm returns there's no problem in
smb.conf. It's in 'security = DOMAIN' mode.
I've got 3 boxes : SERVEUR$, POSTE1$ and POSTE2$, and
6 users, all correctly added to
2019 Apr 27
2
UEFI and PXE
Chris Adams writes:
> Once upon a time, isdtor <isdtor at gmail.com> said:
> > 11:06:51.413549 IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 390)
> > 10.1.2.2.67 > 255.255.255.255.68: [udp sum ok] BOOTP/DHCP, Reply, length 362, xid 0x4007adc6, Flags [Broadcast] (0x8000)
> > Your-IP 10.1.2.57
> > Server-IP
2017 Dec 04
0
Fwd: Qwery regarding Selinux Change Id context
Hi All,
Thanks for the information.
But after resetting the semanage User/login, and moving the targeted folder
to old one and then install the default target. then also its still showing
the
Id context as context=*system_u:system_r:unconfined_t:s0-s0:c0.c1023.*
*What I observed is after changing the permission using semanage command
also, its still showing the system_u:system_r. *
*Check the
2017 Nov 28
0
dplyr - add/expand rows
On 11/26/2017 08:42 PM, jim holtman wrote:
> try this:
>
> ##########################################
>
> library(dplyr)
>
> input <- tribble(
> ~station, ~from, ~to, ~record,
> "07EA001" , 1960 , 1960 , "QMS",
> "07EA001" , 1961 , 1970 , "QMC",
> "07EA001" , 1971 , 1971 ,
2000 Jan 18
1
Problem connecting to samba shares
Hi all,
I have installed samba on my IRIX 6.5 system and configured the smb.conf
file but I get the following error each time I try to make a connection to
the samba share: "You must supply a password to make this connection,
Resource: \\topcondb\ipc$". I have added the Samba server to the NT domain
and I have also created a user account that is common to the NT domain and
the Topcondb
2017 Nov 29
0
dplyr - add/expand rows
Hi,
A benchmarking study with an additional (data.table-based) solution.
Enjoy! ;)
Cheers,
Denes
--------------------------
## packages ##########################
library(dplyr)
library(data.table)
library(IRanges)
library(microbenchmark)
## prepare example dataset ###########
## use Bert's example, with 2000 stations instead of 2
d_df <- data.frame( station =
2017 Nov 25
0
dplyr - add/expand rows
I have a returned tibble of station operational record similar to the following:
> data.collection
# A tibble: 5 x 4
STATION_NUMBER YEAR_FROM YEAR_TO RECORD
<chr> <int> <int> <chr>
1 07EA001 1960 1960 QMS
2 07EA001 1961 1970 QMC
3 07EA001 1971 1971 QMM
4 07EA001 1972 1976 QMC
5
2017 Nov 26
0
dplyr - add/expand rows
> On Nov 25, 2017, at 11:18 AM, Hutchinson, David (EC) <david.hutchinson at canada.ca> wrote:
>
> I have a returned tibble of station operational record similar to the following:
>
>> data.collection
> # A tibble: 5 x 4
> STATION_NUMBER YEAR_FROM YEAR_TO RECORD
> <chr> <int> <int> <chr>
> 1 07EA001 1960
2017 Nov 28
2
dplyr - add/expand rows
Or with the Bioconductor IRanges package:
df <- with(input, DataFrame(station, year=IRanges(from, to), record))
expand(df, "year")
DataFrame with 24 rows and 3 columns
station year record
<character> <integer> <character>
1 07EA001 1960 QMS
2 07EA001 1961 QMC
3 07EA001 1962 QMC
4
2017 Nov 27
2
dplyr - add/expand rows
try this:
##########################################
library(dplyr)
input <- tribble(
~station, ~from, ~to, ~record,
"07EA001" , 1960 , 1960 , "QMS",
"07EA001" , 1961 , 1970 , "QMC",
"07EA001" , 1971 , 1971 , "QMM",
"07EA001" , 1972 , 1976 , "QMC",
"07EA001" , 1977 ,
2017 Nov 29
0
dplyr - add/expand rows
Hi Martin,
On 11/29/2017 10:46 PM, Martin Morgan wrote:
> On 11/29/2017 04:15 PM, T?th D?nes wrote:
>> Hi,
>>
>> A benchmarking study with an additional (data.table-based) solution.
>
> I don't think speed is the right benchmark (I do agree that correctness
> is!).
Well, agree, and sorry for the wording. It was really just an exercise
and not a full
2013 Apr 22
2
Applying head to wall to figure out permissions issues.
I have a permissions issue on a Samba DC running 3.5.6. UserA does not have
permissions to write to file opened by UserB. Specifically, a file created
by UserA gets 764 permissions and UserB can't write to the file until
permissions are changed either on the server to +w for other or UserA
changes the permissions on the file from Windows for Everyone to have write
permissions.
I have tried nt
2007 Jul 05
4
Load Balancing , MSN and SSL
HI All ,
I am running a FC6 box with two internet links with load balance . Every
thing is working fine expect the MSN connection that failed and reconnect
every time and SSL connections . I would link to know if with the nona
howto I could fix that .
I have been tried with no success to redirect that connection only to one
link but its look like do not work . Here my configuration :
2013 Sep 25
0
[xen-unstable test] 19797: regressions - trouble: broken/fail/pass
flight 19797 xen-unstable real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/19797/
Regressions :-(
Tests which did not succeed and are blocking,
including tests which could not be run:
test-amd64-i386-xl-winxpsp3-vcpus1 10 guest-saverestore.2 fail REGR. vs. 19794
Tests which did not succeed, but are not blocking:
test-armhf-armhf-xl 3 host-install(3) broken
2006 Apr 19
0
AHC Panic
I've finally been able to capture the panic, as now it occurs even with DDB
configured. Of the six machines I have running 6.1-RC (CVSupped today),
this is the only one that does this.
/boot/kernel/kernel text=0x30c488 data=0x3b6a0+0x3170c syms=[0x4+0x46430+0x4+0x58da4]
no such file or directory
-
Hit [Enter] to boot immediately, or any other key for command prompt.
Booting