Search found 127 matches

by Chris
Mon Apr 20, 2009 3:35 pm
Forum: Windows
Topic: Please advise!
Replies: 1
Views: 21937

Re: Please advise!

I recommend that you scan again with a Anti-spyware and an Anti-virus program. Anti-spyware: ad-aware http://www.lavasoft.com/products/ad_aware_free.php Spy-bot http://www.safer-networking.org/index2.html Anti-virus: Avast: http://www.avast.com/eng/download-avast-home.html There are of course many o...
by Chris
Thu Apr 16, 2009 7:40 pm
Forum: General
Topic: Your first mobile?
Replies: 1
Views: 8484

Re: Your first mobile?

Hello,

Mine was a Nokia 5110, in black.

Still working!
althoug I have now other phones.
by Chris
Thu Mar 05, 2009 1:12 am
Forum: Linux
Topic: Check CPU stats
Replies: 2
Views: 8840

Re: Check CPU stats

You can alasy use top In a true SMP environment (multiple CPUS), top will operate in number of CPUs. Then you have mpstat You need to install sysstat apt-get install sysstat or up2date sysstat The mpstat command display activities for each available processor, processor 0 being the first one. Global...
by Chris
Thu Sep 04, 2008 1:36 pm
Forum: Linux
Topic: Solved: Samba: session setup failed: NT_STATUS_LOGON_FAILURE
Replies: 6
Views: 46368

Re: Samba: session setup failed: NT_STATUS_LOGON_FAILURE

There is a lot of info in that file. But the only important part is: [SHARE] path = /var/share/ guest ok = yes case sensitive = no strict locking = no msdfs proxy = no force user = first_user You don't really need all of that; in fact it should work with just: [SHARE] path = /var/share/ If you use f...
by Chris
Mon Sep 01, 2008 7:57 pm
Forum: Linux
Topic: Solved: Samba: session setup failed: NT_STATUS_LOGON_FAILURE
Replies: 6
Views: 46368

Re: Samba: session setup failed: NT_STATUS_LOGON_FAILURE

Can you post you config (/etc/smb.conf).

I might be linked to read permissions on the directory you share.

Code: Select all

chmod 755 dir
should solved that.

But it is not sure it is linked to that.
The config can give us more info to investigate?
by Chris
Sun Aug 31, 2008 5:40 pm
Forum: Linux
Topic: Solved: Samba: session setup failed: NT_STATUS_LOGON_FAILURE
Replies: 6
Views: 46368

Re: Samba: session setup failed: NT_STATUS_LOGON_FAILURE

Sound like a user password problem.

Sure that user name and password is correct?
Samba username/password is NOT the same as system username/password.

set samba password with:

Code: Select all

smbpasswd username
by Chris
Wed Aug 06, 2008 8:21 am
Forum: General
Topic: MySQL backup user
Replies: 2
Views: 10695

Re: MySQL backup user

Select is enough to do a backup. But the error message you get is a bug/feature. Add --skip-lock-tables and it should work. $ mysqldump -u backup --password="password" --skip-lock-tables database > backupfile.sql locking of tables, which is recommended to do a inclusive dump of all data in...