similar to: Wine broke my WindowsXP (can't login)

Displaying 20 results from an estimated 500 matches similar to: "Wine broke my WindowsXP (can't login)"

2008 Feb 23
1
Lineage 2 priv server
Trying to get a lineage 2 private server working, I open it up and this error comes up: www.samzen.com/l2.png So I checked the terminal code and here's the errors: samzen at Samzen:~/.wine/drive_c/Program Files/Lineage II$ wine L2Gold.exe err:wineboot:ProcessWindowsFileProtection WFP: L"shdocvw.dll" error 0x7 err:wineboot:ProcessWindowsFileProtection WFP: L"urlmon.dll"
2006 Dec 20
2
Re: wine-users Digest, Vol 17, Issue 36
wine-users-request@winehq.org wrote: > On 12/19/06, Flying <wu_yinghui@yahoo.com> wrote: > > > --- James Hawkins <truiken@gmail.com> wrote: > >> > > > >> > > The install isn't only half completed by the time it > >> > > asks for a > >> > > reboot....that's all there is to the install. If it >
2005 Apr 11
0
correlation range estimates with nlme::gls
I'm trying to do a simple (?) analysis of a 1D spatial data set, allowing for spatial autocorrelation. (Actually, I'm comparing expected vs. observed for a spatial model of a 1D spatial data set.) I'm using models like gls(obs~exp,correlation=corExp(form=~pos),data=data) or gls(obs~exp,correlation=corLin(form=~pos),data=data) This form is supposed to fit a linear model of
2000 Apr 04
0
Obscure bug....?
Dear all, I've been struggling for days now with a piece of code that I have posted here before, that has a really obscure bug. I think I may have isolated it, but I have no idea what it is.... It might also be a bug in R I guess, as it seems that one or several of list elements are not passed when a function is called, but quite rarely. I have been hacking rather wildly on the histogram
2009 Mar 10
4
rm user:group
I want to remove files but only if they are owned by a certain user and group. Basically I have this: find /var/spool/greylist -mmin +363 -exec rm -f {} \; I want to make sure it only deletes files owned by mail. Basically no matter what weird characters are in the file names I want to make sure it does not delete anything outside of /var/spool/greylist. I can add 'sudo -u' to it but
2006 Mar 20
5
Numbered Voicemails even with delete option!
Hello, Thought people might be interested in this. I want my voicemails emailed to a person and not stored on my asterisk server. However, I want them to have a sequential number. I found that if I set the option delete=1 in my voicemail.conf file for the mailbox, then the numbering would keep being restarted. I wrote this shell script to fool Asterisk into numbering my voicemails sequentially
2011 Jan 05
0
Nnet and AIC: selection of a parsimonious parameterisation
Hi All, I am trying to use a neural network for my work, but I am not sure about my approach to select a parsimonious model. In R with nnet, the IAC has not been defined for a feed-forward neural network with a single hidden layer. Is this because it does not make sens mathematically in this case? For example, is this pseudo code sensible? Thanks in advance for your help. I am sorry if this
2000 Jun 15
2
tree error message
Dear R user, I used from the library MASS the dataset cpus and the skript plot.tree.sequence.R, which are included in the tree package: >library(MASS) > data(cpus) > cpus.ltr <- tree(log10(perf) ~ syct + mmin + mmax + cach >+ + chmin + chmax, data=cpus) At home it works but at work I get this message: >Error in .C("BDRgrow1", as.double(X),
2010 May 24
1
--delete and --files-from
Hi, I've read as much as I can regarding the many problems people seem to have with -delete and none of the solutions seems to work for me. I have tried all combinations of using the trailing slash but it seems to have no effect. Does anyone know if -delete can work with -files-from? Here's the code: DIR="/mnt/backup/machine/oracle" FILES=".test_files.files"
2015 Feb 12
7
Cronjob and sudo
I need to remove empty files out of a directory that are over 6 hours old so I created this script and put it in cron.hourly. #!/bin/sh cd /var/list sudo -u matt find /var/list -mmin +360 -empty -user matt -exec rm {} \; I want to run it as matt rather than root for just an added bit of safety. Problem is I get this. "sudo: sorry, you must have a tty to run sudo" Is there another
2012 Feb 08
2
dropterm in MANOVA for MLM objects
Dear R fans, I have got a difficult sounding problem. For fitting a linear model using continuous response and then for re-fitting the model after excluding every single variable, the following functions can be used. library(MASS) model = lm(perf ~ syct + mmin + mmax + cach + chmin + chmax, data = cpus) dropterm(model, test = "F") But I am not sure whether any similar functions is
2008 Jun 09
4
Copying files from specific date.
Dear all, Does anyone aware of any utility to copy files which are created or modify form a specific date ?. Thanks Rajeev R. Veedu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080609/ae761b2c/attachment-0002.html>
2007 Nov 12
1
how to know when files have finished ftping? -- antair restored
Here's a thought: what about doing an lsof? If a file is still being written by ftpd it should be open for writing. Geoff Sent from my BlackBerry wireless handheld. -----Original Message----- From: gjgowey at tmo.blackberry.net Date: Mon, 12 Nov 2007 16:07:23 Subject: re: [centos] how to know when files have finished ftping? -- antair restored On Nov 11, 2007 2:20 PM, Neil Aggarwal
2006 Jan 16
0
Methods for clearing page caches?
Here''s what I use, in a crontab entry: */30 * * * * find /var/www/html/rails/public/categories/ -mmin +60 -exec rm {} \; I''d also like to remove empty directories, which are easy enough to find with the ''-empty'' param, but rmdir trips on non-empty parent directories which it finds before children, and I''m not sure if I want to use ''rm
2011 May 12
1
Printing to pdf file (no cups-pdf)
I use an application that should produce a .pdf (and in fact it does, in Windows). Unfortunately I've got no way to see that file. The printing process apparently starts, and the pdf-file option is accepted, but no file is produced at all (searched with find -mmin). The pdf-cups alternative also proves ineffective. My guess is that the current wine installation lacks some library, which is
2015 Feb 12
0
Cronjob and sudo
On Thu, February 12, 2015 12:32 pm, Matt wrote: > I need to remove empty files out of a directory that are over 6 hours > old so I created this script and put it in cron.hourly. > > #!/bin/sh > cd /var/list > sudo -u matt find /var/list -mmin +360 -empty -user matt -exec rm {} \; > > I want to run it as matt rather than root for just an added bit of > safety. Problem is
2008 May 06
1
Question about Maildir automatic cleanup.
Hi! I want to automatically delete old messages from one user's Maildir, and I was thinking on running something like this: find /home/user/Maildir/cur/ /home/user/Maildir/new/ -daystart -mtime +15 -delete but I'm not sure if by deleting messages "manually" I will break the dovecot.index* files. What do you think? Thanks! Ildefonso.
2019 Oct 16
4
cant login to fileserver
hello, i migrate a NT4 to ad. User can login with AD username and can connect to share on DC. When i try to connect to the fileserver via windows i get access denied. connect from dc1 to fileserver via smbclient does work. on the fileserver: - wbinfo -u show user - wbinfo -P succeeded - wbinfo -g show groups - wbinfo -a Administrator succeeded - pam-auth-update -> kbr, unix, winbind nsswitch
2006 Aug 10
2
ProgressDialog on WindowsXP
Hi all, I''ve been trying to figure this out on my own, but if the project is headed to alpha, it should probably be resolved before that. Basically, ProgressDialog doesn''t show up at all AFAICT. The Gauge control works fine, but in the controls example as well as in a small test app, I can''t get the ProgressDialog to appear. --Mark Ping
2011 Nov 10
0
Problem with joining WindowsXP to samba domain after upgrade from samba 3.5.11 to 3.6.1
Hi all. I had samba domain in version 3.5.11. Then i made upgrade to version 3.6.1. I use samba from Sernet on my centos 5.7 machine x86_64. After upgrade i restarted samba. Since then in my log i have reapeating message: Nov 10 09:27:59 165G6 smbd[25702]: [2011/11/10 09:27:59.246183, 0] rpc_server/netlogon/srv_netlog_nt.c:976(_netr_ServerAuthenticate3) Nov 10 09:27:59 165G6 smbd[25702]: