similar to: Solaris username character limit issues.

Displaying 20 results from an estimated 1000 matches similar to: "Solaris username character limit issues."

2004 Jul 06
3
bug in parsing the 'username map' in 3.0.5pre1
Hi Jerry et al, the parsing of the 'username map' file seems to be broken in 3.0.5pre1 and a few earlier releases. The '!' at the beginning of a line is ignored. Something like !lp = lp !chbeyer = chbeyer !guest = guest nobody = * doesn't work anymore :-( from the man page: [ snip ] If any line begins with an '!' then the processing will stop
2008 Jun 02
8
xen 3.2.1 + intel quad core + 8gigs of ram + linux
Hi! Anyone have a suggestion which version of Linux would be the best host? We typically use Ubuntu but we are flexible since we want the best performance and the least amount of headaches getting it installed and working. Thanks, Jimmy _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2015 Jun 11
6
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
Hello Samba I have been trying to fix the problem below for several days with no success and I can't understand why. Please help me if you can. I've got a windows server 2012 running AD and I want to store the user profiles in a Samba filestore server called "Jimmy". Jimmy has the following smb.conf: [global] server string = Samba4 file server workgroup = TESTAD
2006 May 06
4
Scaffold Uses Wrong Host for MySQL user
I''m following the example Depot app in Agile Web Development with Rails. The scaffold fails because it is not using the correct host for the user. Here is the error that the scaffold emits: Access denied for user ''jimmy''@''%'' to database ''depot_development'' The MySql user ''jimmy'' was created with the host of
2020 May 15
2
RFC] Shrink-wrapping improvement
Hi Francis, Thanks for getting back to me. Could you please provide more details about the problems you encounter with those tools and what improvements required to improve compact unwinding format? Most of my experience is in the mid end, but it is still surprising to me that an improved shrink wrap will break that many tools, considering the fact that gcc has a good shrink wrapping pass and
2006 Feb 24
2
Problem Referencing Fixture Objects
In my tests, I use fixtures, eg pupils.yml might be: jimmy: id: 100003 known_as: Jimmy surname: Page academic_year_id: 1 gender: m In the test, @jimmy (the referencing style referred to in Agile Web Dev....) is nil, whereas pupil(:jimmy) returns the expected Pupil object. What gives? Robert
2020 Apr 17
2
Scalar Evolution Expressions Involving Sibling Loops
Thanks for sharing the known problem. I think to solve the problem properly, we need to fully understand why that assumption about dominance is there and the implications of removing it. It would be good if you could be more specific about your idea of nullptr or SCEV_unknown (eg which function would return those values and when), but returning nullptr from getAddExpr or getSCEVAtScope may be
2015 Jun 17
3
(SOLVED ) you have been logged on with a temporary profile_win7, client+samba 4+WinServ2012
Hi I got help from someone in the #Samba channel. It turned out that my Samba Server (JIMMY) was not resolving. DNS was not aware of him. So the suggestion was to use the "netbios name = JIMMY" in my smb.conf and in the user's "profile tab" enter the path using jimmy's IP. \\IP\disk1\profs That did the trick. Thank you everyone for your time and help. Many thanks
2010 Apr 26
3
Sweave
Hi everybody, I wanted to use Sweave but I do not have the Latex package: "LaTeX Error: File 'Sweave.sty' not found." I cannot find it with MiKTeX :-( Can somebody help me ? Thanks a lot, Jimmy [[alternative HTML version deleted]]
2010 Aug 18
4
dimnames
Hi everybody, I wanted to name a column vector (a variable). This is what I did : try<-matrix(1:4,nrow=4,ncol=1) attr(try,"dimnames")<-list(NULL,"true value") Is it OK ? Thanks for your help, Jimmy [[alternative HTML version deleted]]
2020 May 13
2
RFC] Shrink-wrapping improvement
Hi, Sorry for bringing back such an old thread. I am interested in the latest status of the shrink wrapping pass in LLVM. I have found some active work back in 2017 from Francis Visoiu Mistrih and Kit Barton from the following links. However, it seems that all the work suddenly stops and the improvement for the existing shrink wrapping did not make it into the trunk. Is this work abandoned?
2015 Jun 15
1
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
Hello _Rowland_: I can confirm that the profile path in the "user profile" tab is set to \\jimmy\disk1\profs Please have a look at my "Advanced security settings" for profs (\\jimmy) http://imgur.com/4dAP6zt http://imgur.com/XGJwFpx http://imgur.com/HIR4ZJq In my first email I said that the user was able to view, edit. delete files from \\jimmy\disk1\profs. I have tested
2015 Jun 12
1
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
No they have no profilePath attribute sets up, they have however a base directory set up by default as you can see on the link below. https://app.box.com/s/32jbi0dwac23uypqvm6i0v8suqtbfijd Meilleures salutations / Best regards, Joseph-Andr? GUARAGNA 2015-06-12 10:40 GMT+02:00 Rowland Penny <rowlandpenny at googlemail.com>: > On 11/06/15 16:29, Yanni wrote: >> >>
2020 Apr 16
2
Scalar Evolution Expressions Involving Sibling Loops
Hi Jimmy, It's good to know that the problem is not specific to the case I ran into. May be you can provide your example as well, since Philip seems to be interested in some specific examples. If the assertion in getAddrExpr is deemed necessary, then I think a condition check would be the next best solution as it helps client code guard against such cases and make alternative arrangements to
2006 Jan 23
9
Web Hosting Options?
Can someone recommend a good web host for ROR? -- Posted via http://www.ruby-forum.com/.
2008 Mar 03
15
update_attributes not updating
For some strange reason I can''t get update_attributes to work. Any reason why that might be? here is my code: controller: def update @user = User.find(params[:id]) respond_to do |format| if @user.update_attributes(params[:user]) flash[:notice] = ''Your Information was successfully updated.'' format.html { redirect_to(user_url(@user))
2009 Apr 23
4
Tool to extract LDAP
Greetings, Kindly give me some advice on what tools that you use to extract a LDAP export from SAMBA into a CSV or better? Cheers, Jimmy
2010 Apr 26
2
seed
Hi everybody, How can I set the seed for my simulations ? Is "set.seed(123456)" alright ? Thanks a lot, Jimmy [[alternative HTML version deleted]]
2010 May 18
2
Sweave counter
Dear R users, I am using the Sweave package and I am doing some MCMC. I have a loop function for my MCMC. Every 100 iterations, I want the number of iterations already done to appear on my screen (but not on the final document). Is that possible ? Usually I can rely on > if (i%%100==0) cat(i, "\n") but not when using Sweave. Thanks for your help, Jimmy [[alternative HTML
2015 Jun 12
2
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
Ok, my bad.. The if you use policies.. check you gpo settings for : Computer Configuration \ Administrative Templates \ System \ User Profiles - Delete cached copies of roaming profiles - Delete user profiles older than a specified number of days on system restart and/or read : https://support.microsoft.com/en-us/kb/983544 which may apply. and you dont have any script running for cleanup