search for: tryuing

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

Did you mean: trying
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. U...
2012 Dec 09
1
Making fifo work (Linux)
Friends I need to get R reading from a fifo. I want it to block till there is some data in the fifo, consume what input it gets there, do some thing with 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))
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 <- 0001...
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 eithe...
2011 Jan 26
0
Samba Shares access problems
Hi all, This is my first mail to the mailing list. I'm currently facing a problem on our samba installation, since the package upgrade from last week (friday) the samba configuration has been replaced with a news one. I had to put a backup in place. But now there areaccess problem, on some clients but not all. Linux is not impacted. Only Windows 7 clients are impacted, but only clients
2005 Jan 31
0
tc segmentation faults when trying to add pfifo_fast as leaf discipline on a HTB class
Hello I am trying to attach pfifo_fast to af leaf htb class. But tc segmenetation faults. If I try the failing command throug strace, it shows me that the last thing tc tries to do just before the segmentation fault, is to try to open a file called "/usr/lib/tc/q_pfifo_fast.so". Of course i have tried to find worthfull information around the Internet, but haven''t found
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