similar to: FW: CIFS mount problem on Linux

Displaying 20 results from an estimated 500 matches similar to: "FW: CIFS mount problem on Linux"

2009 Apr 02
4
Problems with Counter Strike Source
Hi all First : sorry for my english, i'm french [Embarassed] I have a problem with counter strike source. I'm on Ubuntu 8.04.2 Hardy ( and not Studio, i just have the ubuntu studio skin ), i have an ATI radeon 4850 graphic card ( with the latest drivers installed ) and Wine 1.1.18 . To launch the game, i put " WINEDEBUG=fixme-all wine -fullscreen -w 1440 -h 900 -refresh 60
2010 Nov 28
6
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 1:57 PM, Bill Wendling wrote: > On Nov 28, 2010, at 2:59 AM, John McCall wrote: > >> On Nov 28, 2010, at 2:20 AM, Bill Wendling wrote: >> >>> On Nov 27, 2010, at 4:57 PM, John McCall wrote: >>> >>>> On Nov 25, 2010, at 3:03 AM, Duncan Sands wrote: >>>>> I'm pointing out that if the invoke instruction
2008 Nov 13
0
sem and "simple variables"
salutations! i am doing some longitudinal modeling with sem and thought calculating some "simple variables" would make my model more readable. this is the smallest subset of my model that illustrates the resulting problem. i have 2 observed exogenous variables (c1, d2) and 4 observed endogenous variables (dc1, dd1, dc2, dd2). c1 is the observed state at time 1, dc1 is the change in c
2010 Nov 29
0
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 3:47 PM, John McCall wrote: > So mem2reg would have to split %try and make a phi in %lp, like so: > > try1: unwinds to %lp > %count = load i32* @count > br label %try2 > try2: unwinds to %lp > call void foo() > br label %return > lp: > %t = phi i32 [ i32 0, label %try1 ], [ i32 %count, label %try2 ] > #etc. > > That's a lot of
2010 Nov 29
0
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 3:47 PM, John McCall wrote: > This is well-formed SSA; the alloca instruction %x is in the entry block and thus dominates both the store in %try and the load in %catch. mem2reg wants to eliminate %x and replace the load in %catch with a fixed value. This involves looking at the value stored in %x at all predecessor points, which is a challenge because one of those
2011 Mar 10
2
sum of variables in function
Dear R users, Probably, this is quite a simpe question, but I do not find the proper way to obtain want I need. To explain the problem, I constructed a simple example. Suppose I have the following function: try1<-function(x){ y<-x[1:2] z<-x[3:4] y[1]*(z[1]+z[2])+y[2]*(z[1]+z[2]) } This function will be part of a for loop. This is what I like to obtain for every k: if k=2
2003 Oct 22
4
adjacency matrix
Dear R experts, I am new to the list and R software. I need to convert arcview file to Winbugs having R has middle package. Got from friends that it is possible following the steps: 1. Converting arcview shapefile to "cgm clear text file" 2. Downloading "convert.r" to into R 2.1 use source("convert.r") 2.2 convert("filename_cgm") without the
2005 Jun 03
2
Dirty Rotten Hack. (reversing tickmarks on axes?)
I feel dirty. I have some graphs I'm building to communicate chargeback rates and service usage for our backup system here at the University of Florida. These come down to daily data points on a graph of number-of-bytes transferred and stored. Since we chargeback on the same basis (price per MB this, price per KB that) the same chart with a different scale can be used to communicate bytes
2004 Sep 15
7
Splitting vector into individual elements
Is there a means to split a vector into its individual elements without going the brute-force route for arguments to a predefined function call? offred.rgb <- c(1, 0, 0) * 0.60; ## Brute force style offred.col <- rgb(offred.rgb[1], offred.rgb[2], offred.rgb[3], names = "offred") ## Desired style
2005 Jun 22
1
TE110P Card
Hi everybody ! I'm trying to setup a TE110P card. But i'm facind this error... and * cannot start. [chan_zap.so]Jun 22 11:50:33 WARNING[16384]: loader.c:248 ast_load_resource: /u sr/lib/asterisk/modules/chan_zap.so: undefined symbol: pri_dump_info Jun 22 11:50:33 WARNING[16384]: loader.c:429 load_modules: Loading module chan_z ap.so failed! Does someone already experience this case...
2003 May 01
1
red hat linux8.0 to windows communication
Hi, I'm working on red hat linux8.0. I need to fetch files from windows. So i Installed samba on my linux machine. Can u please tell me how can i contact windows machine from linux and view files and copy that into linux? Do i have to install samba client for windows 2000?? if so, can u please tell me where can i get that and what to be done for installing the same. Pls help me in this
2004 Mar 25
11
Asterisk
What kind of specs do I need for a asterisk box that will have a pri for pstn and about 65 sip phones I was thinking a Xeon 3.05
2019 Sep 12
0
Best method of grabbing Now Playing metadata with PHP?
On Thu, 2019-09-12 at 22:05 +0100, Richard G Elen wrote: > Can someone do me the favour of pointing us at a routine, library, > script or technique that will grab Now Playing metadata (Title, > Artist, > Album) remotely (ie from another machine) from an Icecast 2.4.x > server > reliably for logging purposes, preferably using PHP? You may want to take a look at GlassPlayer:
2004 Sep 22
2
dot density maps
Dear All, In the moment i'm using the map and maptools package to read shapefiles and display the maps. I'm looking for the possibility to draw points (randomly positioned or positioned according to a grid) into the polygons instead of filling the polygons with colors. For example: a map (shapefile) with 10 countries, 15 points in the polygon of country A, 20 points in the
2010 Nov 28
0
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 2:59 AM, John McCall wrote: > On Nov 28, 2010, at 2:20 AM, Bill Wendling wrote: > >> On Nov 27, 2010, at 4:57 PM, John McCall wrote: >> >>> On Nov 25, 2010, at 3:03 AM, Duncan Sands wrote: >>>> I'm pointing out that if the invoke instruction >>>> is removed and catch information is attached to entire basic blocks, then
2008 May 20
6
IE 7
hello; I installed IE 7 But i can not find it's .exe to Run it . where does it install ?or it has not been installed ? there is no diffrence i just want install IE Thanks alot
2010 Nov 28
3
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 2:20 AM, Bill Wendling wrote: > On Nov 27, 2010, at 4:57 PM, John McCall wrote: > >> On Nov 25, 2010, at 3:03 AM, Duncan Sands wrote: >>> I'm pointing out that if the invoke instruction >>> is removed and catch information is attached to entire basic blocks, then if no >>> care is taken then it is perfectly possible to use %x before
2019 Sep 12
5
Best method of grabbing Now Playing metadata with PHP?
Hi... Can someone do me the favour of pointing us at a routine, library, script or technique that will grab Now Playing metadata (Title, Artist, Album) remotely (ie from another machine) from an Icecast 2.4.x server reliably for logging purposes, preferably using PHP? Ideally we would grab the metadata when it changes - all the methods we've tried so far require us to poll the server so
2005 Dec 07
2
[Bug 3305] New: -t copies always too many files to mounted windows volume -c copies no files
https://bugzilla.samba.org/show_bug.cgi?id=3305 Summary: -t copies always too many files to mounted windows volume -c copies no files Product: rsync Version: 2.6.7 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo:
2007 Nov 30
3
How to setup redundant SIP peers
Hello list, I try to setup an asterisk-server with different SIP-Peers to PSTN. The Peer are working and configured in sip.conf: [peer1] type=peer host=10.10.10.1 [peer2] type=peer host=10.10.10.2 Now dialout is no problem. Extensions.conf says: exten => _0Z.,1,Dial(SIP/49${EXTEN:1}@peer1,30) But how can I setup a failure-route if the SIP-Proxy "peer1" ist not