Notes by voodoo

Displaying notes 51 - 60
Created by voodoo on March 24, 2011 09:55:43    Last update: March 24, 2011 10:04:02
Goto http://www.adobe.com/downloads/ , click the download flash player icon Select YUM for Linux from "Select version to download" dropdown Save the rpm file, which is about 4.3K. Install the RPM: rpm -i adobe-release-i386-1.0-1.noarch.rpm Import the Adobe key: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-li... Install the flash plugin yum install flash-plugin nspluginwrapper.x86_64 ns...
Created by voodoo on March 23, 2011 15:57:52    Last update: March 23, 2011 15:57:52
In the "Program search" (or Run) box, enter lusrmgr.msc to bring up the "Local Users and Groups" dialog. Double click the user name you want to set password never expire.
Created by voodoo on March 23, 2011 15:32:55    Last update: March 23, 2011 15:36:00
I got "Unknown SSL protocol error" when using curl to get the default page from iis 7 (of course, IE simply displayed "Internet Explorer cannot display the webpage"). The problem was that I used the default iis 7 certificate, which didn't have a name - and that caused SSL to fail. I created a new certificate with a name and that fixed the problem. # curl -v -k --dump-header - https://192.168.80.15... Other possible reasons: 3 Common Causes of Unknown SSL Protocol Errors with cURL
Created by voodoo on March 23, 2011 15:21:21    Last update: March 23, 2011 15:21:57
Open IIS Manager, select the server in the left panel. Double click "Server Certificates" in the right panel. In the server certificates dialog, right click and select "Create Self-Signed Certificate". Enter a name for the certificate and click OK. The certificate is valid for a year. Looks like MS doesn't offer you much option in creating a new certificate.
Created by voodoo on March 23, 2011 11:40:54    Last update: March 23, 2011 11:47:41
To grant a user "logon as a service" right on Windows 7: Enter secpol.msc into the "Search programs and files" box (the Run box for previous Windows versions) and press enter. Locate "Local Policies" and "User Rights Assignment", then double click "Logon as a service" in the right panel. Add the user or group
Created by voodoo on March 10, 2011 11:08:45    Last update: March 10, 2011 11:09:18
Looks like for Linux fdisk , cylinders as display units was deprecated, using sectors is the new way. # fdisk -v fdisk (util-linux-ng 2.18) # ... Notice that cylinder numbers actually overlap for the last 2 partitions.
Created by voodoo on March 09, 2011 16:42:19    Last update: March 10, 2011 08:41:31
Email attachment blocking is a safety measure that can be a real pain in the *&^ when you have a legitimate need to send some file types that are considered "dangerous". Fortunately, as developers we have more than one weapon in our arsenal to defeat that feature. Here are some options I tried. Put the offending file in a zip - doesn't work for some services, Gmail is an example. Change file extension, e.g., from .exe to .ex_ or .doc. But this does not work if you are sending a WAR (Wab Application Archive) that contains hundreds of .js files. Base64 encode the zip, then gzip it. To restore: cat received.gz | gzip -d - | base64 -d - >origina... This may still fail for...
Created by voodoo on March 07, 2011 15:24:26    Last update: March 07, 2011 15:24:26
# yum install mysql-server Loaded plugins: pres...
Created by voodoo on March 04, 2011 12:46:58    Last update: March 04, 2011 12:47:35
According to SELinux Trouble Shooting Tool AVC AVC stands for Access Vector Cache . SELinux Denials are reported in the logging system as AVC 's with the denied key word.
Created by voodoo on March 04, 2011 12:20:34    Last update: March 04, 2011 12:20:34
# yum whatprovides libmpfr.so.1 Loaded plugins:...
Previous  1 2 3 4 5 6 7 8 9 10 Next