CIFS/SMBFS “mount error 13 = Permission denied”
Are you getting a rather generic "mount error 13 = Permission denied" when trying to mount Windows shares in Linux? I was.
Samba's been updated, keep up. You need to add the domain=XXX into your -o command, or text file for your credentials.
Super simple Active Directory with Samba
I needed a super simple, straight forward way of installing samba on Ubuntu and joining it to an Active Directory domain.
This doesn't allow you to login to Ubuntu with domain credentials but allows you to share and access files with domain credentials.
Heres how its done
Problems installing System Center Essentials 2010
So, I spent 16 irreplaceable hours of my life trying to install System Center Essentials 2010 on both Server 2003 and Server 2008, both systems gave me the same, unhelpful error.
Here is the SCE setup log
Couldn’t send mail with MS SQL Server 2005
So I've been struggling trying to send SQL Agent job notifications to operators.
- Msg 515, Level 16, State 2, Procedure sp_validate_user, Line 19
- Cannot INSERT the value NULL INTO COLUMN 'permission path', TABLE '@temp'; COLUMN does NOT allow nulls. INSERT fails.
- The statement has been terminated.
- Msg 14636, Level 16, State 1, Procedure sp_send_dbmail, Line 107
- No global profile IS configured. Specify a profile name IN the @profile_name parameter.
[Snippet] Redirecting Non-SSL Traffic to SSL
- RewriteEngine On
- RewriteCond %{HTTPS} off
- RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Redirecting non-www to a www prefix
This old chestnut again.
Create or edit the .htaccess file
- RewriteEngine On
- RewriteCond %{HTTP_HOST} !^www\.YOURDOMAIN\.COM$ [NC]
- RewriteRule ^(.*)$ http://www.YOURDOMAIN.COM/$1 [R=301,L]






