Displaying 20 results from an estimated 700 matches similar to: "[LLVMdev] Getting rid of the dangling names of functions"
2010 Jun 23
3
samba winbind problem with trusted domains
hi all
i am new to samba and struggling with trusted domains authentication from
many days .i have a win2k3 domain(corp.raju.ad )and win2k8 domain (
testraju.ad) .
i have joined samba server as a member to win2k8 domain (testraju.ad) using
net ads join commands /
i m able to access samba shares using testraju.ad user ID's successfully ,
while authenticating with corp.raju.ad users i m
2008 Mar 07
11
Issue with Crossbow on VirtualBox
Team,
We are trying to install Crossbow on VirtualBox. Siva first tried it on
Linux and reported it in
Hyderabad Open Solaris User Group alias.
http://opensolaris.org/os/project/hosug/
Today both of us tried it on VirtualBox running on OpenSolaris. Both
attempts have the same results.
a. Selecting Solaris Developer Express during boot process exits the
installation. See this picture:
2010 Sep 15
1
SAMBA share permissions all other known users
hi all,
i have integrated SAMBA with active directory and everthing is working .
however in share defination i want to give write permissions to few users
and read access to few users.
i have mentioned write list and read list in samba config file as follows.
this is working but all other known users (domain users) are getting read
access . is there any way to restirct the same :( . this
2015 Apr 19
4
running unit tests on the stringr package
I am trying to learn how to run the unit tests in the stringr package
and have the following questions.
1) The r-cran-stringr package does not suggest/depend on the
r-cran-testthat package . Would it make sense to add such a thing
since after all the tests in /usr/lib/R/site-library/stringr/tests
rely on testthat package?
2) I am getting the following error when trying to run the unit tests
%
2006 Aug 18
5
Handle limit in filter
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I''ve written a minimal sort of Perl module that dynamically creates
and destroys traffic control rules for specific IPs. I''m currently
using it for a user bandwidth control application at a client site.
The module essentially gets Ethernet device(s), IP address and in/out
speeds as input and dynamically creates classes, queues
2010 Jul 07
1
The specified server can't perform the requested operation. Problem Accessing samba from windows 7 and vista
Hi all,
i have installed samba in RHEL 5 with likewise backend authentication .
everything is working but am unable to access samba shares from windows 7
and vista machines . It is simply giving error as "the specified server
cannot perform the requested operation" I have spent many days working on
this but no luck .
please help me :(
following is the log . when i try to access samba
2011 Jan 19
1
How to build Theora decoder on VC++ paltform
On 17.01.2011 12:35, Raju wrote:
> Dear friends
> Recently i have downloaded Theora video codec from http://www.xiph.org/
> ,
> here its having both encoder and decoder , how can i build only
> decoder on VC + windows platform , if i build now i will be getting "
> Cannot open include file: 'ogg/ogg.h': No such file or directory "
> pls send me solution for
2008 Jan 31
1
Newbie: Using R to analyse Apache logs
hits=-2.5 tests=BAYES_00,FORGED_RCVD_HELO
X-USF-Spam-Flag: NO
Hi,
I have a requirement to scan Apache logs and discover ``exceptions''.
Exceptions can be of two types:
1. A single IP generating a large amount of traffic within a given time frame
(for definable values of ``large'' and ``time frame'').
2. A single IP hitting a wide set of URLs on the server (indicates
2010 Nov 11
2
SAMBA accessible with hostname only on local subnet
hi all,
i have integrated SAMBA with active directory and everthing is working .
however SAMBA server is accessible with hostname only on local
subnet. it is not opening in other subnets and opening with ipaddress.
it keeps on asking for password and saying access denied while using
net view \\testsamba corp.raju.ad.
command
any one faced the same problem ?? please help me out.
Regards
2004 Jun 25
4
X user application fails come up but xclock and xterm come up
Hi ,
I open secure Session with X11 forwarding. when run any standard X
applicattion like xterm xclock
it come up without any error. I start my user X application it fails. On
User application side it fails when
"xtOpenDisplay" system call with localhost:10.0.
On SSH server debug message are :
> debug1: X11 connection requested.
> debug2: fd 20 setting TCP_NODELAY
>
2006 Feb 23
9
Balancing multiple connections and NAT
Hi,
I have a client connected to the ''net through 3 ISP''s. Have set up a
Linux box to do routing and load sharing for the 3 connections. A
fourth interface is connected to the LAN with private IP addresses.
Am using iptables to SNAT traffic to the appropriate IP depending on
the interface the packet gets routed onto. The setup looks something
like this:
Interface IP
2015 Apr 29
2
[LLVMdev] Assertion failure (Bug 21609) in DwarfFile.cpp
On Tue, Apr 28, 2015 at 7:14 PM, David Blaikie <dblaikie at gmail.com> wrote:
> I believe duncan's fixed this recently in 235956 and 235955 - does ToT work
> for you?
It seems like r235955 might have fixed it. However I'm having build
issues with ToT in my environment. Is this the right place to check
ToT build status:
http://lab.llvm.org:8011/one_line_per_build
>
> On
2009 Jul 04
1
IOError while rendering and redirecting
HI all,
I am getting IOError while rendering view or redirecting.
If i refresh the page the actual page is displaying.
Please tell me wht is the problem and how to solve the problem.
Regards,
Raju
--
Posted via http://www.ruby-forum.com/.
2011 Mar 10
1
ChanSpy with alphanumeric SIP channels [1.6.2]
Hi,
I'm using SIP users of the form 'ab_12345' (two letters, underscore, 5
digits). ChanSpy is working fine for listening in to conversations
initiated by these channels, and I can use '*' to randomly switch
channels. However, is there any way in this scenario to be able to
switch ChanSpy to a specific channel by typing in a ...# key sequence
during a spy session?
2015 Apr 13
2
list of available R packages
This is a very minor point. But thought I would bring it to your
attention anyway...
According to http://cran.r-project.org/bin/linux/debian/ , the list of
available R packages can be found by
apt-cache search ^r-.*
This seems to work in bash but not in zsh. As a work around, I found out that
apt-cache search "^r-.*"
works in both zsh and bash.
--
Kamaraju S Kusumanchi |
2010 Jun 03
3
[LLVMdev] Distinguish Global variables from functions
Hey all...
I was writing a Function pass to print all the functions using
runonFunction() method .but it is printing one global variable "x" at the
same time which i just dont know how is getting there.how can i avoid "x"
from printing?? . Here is the framgment of code of my pass
namespace {
// Hello - The first implementation, without getAnalysisUsage.
struct Test2 :
2010 Jun 28
1
samba winbind is not showing full list
Thanks TMS, that is not a major problem as of now..
i dont know why but i m facing many problems/errors while using samba :).
now the major problem is wbinfo -g is not showing the full list. only few
domain groups it is showing . do u have any idea about this ??? .please
help
On Fri, Jun 25, 2010 at 6:44 PM, <tms3 at tms3.com> wrote:
>
>
>
> --- Original message ---
>
2012 Sep 14
2
Digium AEX410, MTNL Mumbai Caller-ID problems
Hi,
Continuing with the saga of Digium vs MTNL Mumbai, looking for
suggestions on handling incoming Caller-ID issues. The card manages to
grab a couple of (random) digits of the incoming CID, but they're more
or less useless. Is there any way to fix this?
Asterisk 1.8.13, Dahdi 2.5.0.1 on Debian Testing (Wheezy), MTNL Mumbai.
Digium, Inc. Wildcard AEX410 4-port analog card (PCI-Express)
2005 Oct 27
4
Is CentOS 3.5 built out of RHEL AS OR ES?
Hello Gurus,
1. Do you have any idea whether CentOS 3.5 is built out of RHEL AS or RHEL
ES?
2. Can a single process use more than 32 Gbytes of RAM in CentOS 3.5 ?
Is there any limitation that you experienced?
Thanks for your time.
Siva.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Mar 24
3
mmonit - Permission denied errot
Greetings,
I just downloaded the mmonit from mmonit.com site on my CentOS box
untarred-unizipped it.
As per the documentation, I dutifully typed
./bin/mmonit
and it is refusing to run. I am running this as root and SELinux is disabled.
running it with strace spews the following (in entireity):
[begin]
# strace ./bin/mmonit
execve("./bin/mmonit", ["./bin/mmonit"], [/* 28