similar to: Fw: Session logging in Windows98?

Displaying 20 results from an estimated 1000 matches similar to: "Fw: Session logging in Windows98?"

2000 Nov 21
4
Session logging in Windows98?
I'd like to log all console I/O for an entire session while maintaining normal console I/O. I'm working in Windows98, RGui, R1.1.1. The sink() function is not the answer since it diverts output from the console. In the RFAQ I see references to "...save the contents of the interaction buffer to a file..." and in the R-Help Archive "...just save the console output...". I
2001 Oct 26
1
Bug or new concept in formatC?
As a sequel to my previous mail on cut, formatC does not produce what I have been taught is significant digits: > x <- c(1.0793,1.0796, 11.0954, 11.0736 ) > formatC(x,digits=3,format="g") [1] "1.08" "1.08" "11.1" "11.1" (3,3,3,3) significant digits OK > formatC(x,digits=3,format="f") [1] "1.079"
2004 Jan 18
0
xtable feature addition suggestion
Hi, attached follows a patch to add a feature that I think it would be useful having in the print.xtable function of the xtable package. It adds the option 'tabular.environment' to that function, which could be used to set an alternative tabular environment, as the name already suggests. This is particulary useful when dealing with long tables, which do not fit in a single page. In the
2001 Oct 26
0
cut - suggestion
I often use cut in order to produce quick tabulations of continuous data. But if you choose "sensibe cotpoints as in: > z <- rnorm(100) > table( cut( z, breaks=seq(-1,1,0.5) ), + cut( z, breaks=c(-100,0,100) ) ) (-100,0] (0,100] (-1,-0.5] 18 0 (-0.5,0] 19 0 (0,0.5] 0 17 (0.5,1] 0 19 you get labels
2000 Aug 24
2
Problem with Samba-windows98
Hi all I have a linux(susse) running samba and am trying to connect from windows98. I have no problem seeing the linux computer in the network neigbourhood. I can also see the folders shared from it. When Im accessing a folder I get prompted for password (my login on windows98 is the same as for linux). But it doesnt accept the password "Bad password". When I log in from other
2001 Nov 21
1
Slow printing in batch?
For doumentation purposes I run a batch R program that does reshaping etc. of data and finally prints things. When I paste the code into an R-window everything runs in a few seconds, but in Batch mode i get in the output file the result below. Any clues why R uses 4 min to print a 1129\times 6 dataframe in batch mode? The scrit I use to run R is: c:\stat\r\%R_VERS%\bin\Rterm --no-restore
2005 Nov 23
0
lexmark USB no print in windows98 from linux
hello all..., I using samba 2.2.5 on linux suse 8.1. I have windows98 called w98 on my network sharing printer lexmark Z25-Z35 as lexz35w98. I using following command for print in windows98 through samba: smbclient //w98/lexz35w98 -N -c "print /tmp/o" but the printer no print. the printer lexz35w98 is connected way USB in client w98, and recive the file, move de headers, but no print.
2008 Apr 27
1
File & Printer Sharing With Windows98
I have been looking for clear guidance on setting up Samba on home network to share files and printers for nearly a year and just don't understand how to apply the information. Here is what I have: A Linksys router is hardwired to 3 computers and a DSL modem. One computer is running Debian Etch v2 with Samba installed. The other two computers are running Windows 98SE. The files and
2000 Aug 25
1
Beginner question: share a printer in Windows98
Dear all, I have a samba in my RedHat and want the Linux to use a printer in another pc of windows98, I tried to configure that following "using samba", I created a file 'printcap', 'smbprint', '.configure', what else I should do to print? Do I have to configure 'smb.conf'? How to do that? Can I do all this from SWAT? Can anybody tell me in detail? I
2001 Apr 06
1
Samba Problem with Windows98 client
Dear Samba Team I use samba-2.0.5a-1mdk on my linux server.i can use my PC with windows95 to share files and printers from the server,but for my PC with windows98 I can't do that . They shows "You must supply a password to make this connection:" and I tried to enter any password , but it didn't work. How can I do ?
2005 Nov 17
0
Windows98 recibe, pero no imprime
Hola Amigos, quiero contarles algo !! Estoy usando samba 2.2.5 instalado en mi linux suse 8.1 para imprimir en un windows98, mediante el comando : smbclient //w98/lexz35w98 -N -c "print /tmp/o" la impresora en el w98 es una lexmark Z35 conectada al USB. el w98 recibe la orden de impresion y pareciera que fuera a imprimir, pero no sale nada en la impresora, incluso el cabezote de la
2001 Nov 18
1
samba under Mandrake 7.2 with Windows98
Hi , I am using Mandrake 7.2 and trying to install samba to share my linux hard disk with Windows 98 ... Herewith my config and diagonstics : bigserver <------------> aclient runing : mandrake 7.2 Win98 Ip Addr.: 192.168.0.1 192.168.0.2 password encrypted activated activated - ping commands work fine on both ways, so my Tcp/ip
2008 Oct 05
1
doc/manual/Rfaq.css missing in R 2.8.0 (20081005) tarball
With the standard setup unchanged from 2.7.2, I am seeing make[3]: Leaving directory `/tmp/buildd/r-base-2.8.0~20081005/po' make[2]: Leaving directory `/tmp/buildd/r-base-2.8.0~20081005/po' you should 'make docs' now ... make[2]: Entering directory `/tmp/buildd/r-base-2.8.0~20081005/doc' make[3]: Entering directory `/tmp/buildd/r-base-2.8.0~20081005/doc/manual' make[3]:
2001 Jan 02
1
sink() does not seem to release the file
I run Win2000, and when I try to write to a file and later use it it seems that R 1.02.0 has a firm grip on it: > version _ platform i386-pc-mingw32 arch x86 os Win32 system x86, Win32 status major 1 minor 2.0 year 2000 month 12 day 15
2008 Feb 18
2
Number of digits of a value for problem 7.31 RFAQ
Hello dear R users! I did not find a function which gives information about the number of digits of a value shown by R. Do you know one? I need it to solve the problem (see RFAQ 7.31)that 0.2==0.2+0.1-0.1 FALSE The solution suggested in RFAQ is to use isTRUE(all.equal(0.2,0.2+0.1-0.1)) But if I want to compare inequality: 0.2<=0.2 +0.1-0.1 TRUE but 0.2<=0.2 +0.1-0.1 FALSE bad! but in
2002 Aug 19
1
PR#1914
(1) With MSVCRT.DLL (version 4.20.6164) from ftp://ftp.microsoft.com/softlib/mslfiles/msvcrt.exe installed in rw1051\bin directory, as per RWinFAQ 2.14: RGUI caused an invalid page fault in module MSVCRT.DLL at 017f:78014b90. Registers: EAX=0093007a CS=017f EIP=78014b90 EFLGS=00010246 EBX=017a2360 SS=0187 ESP=0091eee4 EBP=0091ef10 ECX=ffffffb5 DS=0187 ESI=00000000 FS=5bbf EDX=81d7d520 ES=0187
2001 Sep 05
3
Bug in ftable?? (Was: Two-way tables of data, etc)
Further to the discussion between Murray Jorgensen and Brian Ripley, it seems to me better to choose tabulations that will not come and bite you. Suppose your data are sligtly irregular, e.g. (for the sake of the argument): data( warpbreaks ) warpbreaks$variant <- rep( 1:5, len=54 ) attach( warpbreaks ) tb <- table( wool, tension, variant ) tb # in this case you would like to see: tp
2001 Sep 05
3
Bug in ftable?? (Was: Two-way tables of data, etc)
Further to the discussion between Murray Jorgensen and Brian Ripley, it seems to me better to choose tabulations that will not come and bite you. Suppose your data are sligtly irregular, e.g. (for the sake of the argument): data( warpbreaks ) warpbreaks$variant <- rep( 1:5, len=54 ) attach( warpbreaks ) tb <- table( wool, tension, variant ) tb # in this case you would like to see: tp
2003 Dec 01
0
No subject
if((group_c = *lp_force_group(snum))) { BOOL is_guest = False; some lines deleted token = create_nt_token(uid, gid, current_user.ngroups,current_user.groups, is_guest); must_free_token = True; } set_sec_ctx(uid, gid, current_user.ngroups, current_user.groups,token); /* * Free the new token (as set_sec_ctx
1999 Apr 11
0
troubles printing from windows98 to a samba printer
Hello I have this problem with printing to a HP Laser Jet 4L set up on my linux box which is the local samba server for the intranet. I can only print as root or as a user admin user = thatuser. I need to be able to set a password for the printer and only those users to use the printer who know the password. Or a similar solution. As ordinary user Windows98 says: