search for: tryu

Displaying 8 results from an estimated 8 matches for "tryu".

Did you mean: try
2008 Sep 04
1
open_fake_file_shared: access_denied
...:$INDEX_ALLOCATION] user[USER_NAME] The messages appears in some computers' logs for more then just one user. It looks like computer dependent not user dependent. I don't know what exactly this message means and I don't understand where is the problem. Could you please help me. I was tryuing to find a solution on Google but without any success. I am using samba 3.0.28a on Gentoo linux. Thank you in advance. Regards, Petr -- Ing. Petr Kopecky E-mail: kejpi@centrum.cz _______________________________________________________ OpenDocument is now international standard ISO/IEC 26300...
2012 Dec 09
1
Making fifo work (Linux)
...th it then loop back and block again. Very simple. Yes? No. The example in the documentation works OK.. zz <- fifo("foo-fifo", "w+") writeLines("abc", zz) print(readLines(zz)) close(zz) unlink("foo-fifo") But when I tryu my code to *read* and *block*, id does not work. P <- "Myfoofifo" C <- fifo(P, "r", blocking=TRUE) If Myfoofifo does not exist this has an error: > C <- fifo(P, "r", blocking=TRUE) Error in fifo(P, "r", blocking = TRUE) : cannot open the connec...
2006 Nov 24
1
mfcr/R2
Hello! I'm tryuing to bring up an R2 connection but eventhough I've followed the guidelines in: http://zarzamora.com.mx/asterisk/17 something seems to be missing. When an incomming call is generated I get: Nov 24 06:01:17 WARNING[-197416016]: chan_unicall.c:612 unicall_report: MFC/R2 UniCall/24 <- 00...
2001 Nov 13
1
RODBC
I'm tryuing to get the RODBC package to work with a MS Sql database (Wonderware's InSQL). I'm able to connect to the database using the following: version _ platform i386-pc-mingw32 arch x86 os Win32...
2004 Apr 18
0
booting a 486 laptop
Hi. Im tryuing to boot a 486 laptop with syslinux. I want to boot from a CF card in an IDE adapter, plugged into the IDE interface. my procedure is: fdisk (create 1 partition, mark it bootable) mkfs.vfat (format it) syslinux /dev/disc/partition copy bzImage to the partition and rename it LINUX this fails ei...
2011 Jan 26
0
Samba Shares access problems
...rs which kenw the server before the problem occurs and one which just received at the office that know the samba server only after the problem. Computers which knew the Samba server: Each time we try to open an MS Office 2010 file, this one is already accessed or read only. It takes a long time to tryu to open it. New computer: This one can access the file, edit them and save them. But it takes a long time, sometime 1 minute to open it or save it. I don't understand why the different clients have different symptoms, one can access files others can't. I suspect an SMB cache on clients, i...
2005 Jan 31
0
tc segmentation faults when trying to add pfifo_fast as leaf discipline on a HTB class
...;t found anything useful. Is pfifo_fast meant to be used *only* as a default qdisc on an interface ? Or can I use it as a qdisc in a HTB class ? I don''t know what usefull information you want about my setup, but i don''t think that you need to know about it... :) Otherwise I will tryu to explain more, on request. Regards, Jesper Lund _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2010 Aug 04
3
retrieve name of an object?
Dear all Is there an easier way to retrieve the name of an object? For example, > tmp <- 1:10 > as.character(quote(tmp)) [1] "tmp" > as.character(quote(mtcars$cyl)) [1] "$" "mtcars" "cyl" > as.character(quote(mtcars$cyl))[3] [1] "cyl" The last call more than anything seems a hack. Is there a better way? Thank you Liviu