It’s actually quite simple.
Create a .htaccess file in the directory with the following contents:
AuthUserFile /directory/containing/.htpasswd
AuthName “Title for Protected Site”
AuthType Basic
Require valid-user
To create the .htpasswd file, simple use the following command:
htpasswd2 -c .htpasswd hayden
And it will create the appropriate .htpasswd file in the directory you are in.
sloik2004 Lab Notes
This guide is WONDERFUL for this problem.
http://www.susegeek.com/wireless/unable-to-set-atheros-wireless-card-with-madwifi-in-opensuse-110/
sloik2004 Lab Notes
Apparently the packager for MadWifi has messed up the version numbers for their OpenSuSE wifi driver packages.
A solution can be found below.
http://forums.opensuse.org/network-internet/wireless/386427-madwifi-kmp-issues-11-0-a.html
sloik2004 Lab Notes
To check the status of my server’s RAID array, I’ve found the following command to be useful:
# /sbin/mdadm --detail /dev/md0
sloik2004 Lab Notes
The solution is simple! Look to this thread:
http://www.fedoraforum.org/forum/showpost.php?p=948028&postcount=5
It’s as simple as shutting down and restarting the Pulse daemon as soon as you’ve got everything set up the way you like it. Otherwise, when you log off or shut down, the daemon is killed before it can save its settings, reloading the defaults on the next boot.
Pulseaudio daemon won’t save it’s settings to ~/.pulse if just killed when exiting your login session. It will only save if you kill the daemon with pulseaudio -k command. So I had to add a 1-line script (/usr/bin/pulseaudio -k) to /etc/kde/shutdown directory. Now it works.
sloik2004 Lab Notes
To change the Java version you’re currently using under Fedora 8 (and maybe other distros) run the following command as a root user. Take note: this command is in /usr/sbin/, so just running it through su may not work.
update-alternatives –config java
sloik2004 Lab Notes
This was a bit annoying, but eventually was easy to fix according to this thread:
http://www.suseforums.net/index.php?s=5bb4454b3b055089ec6b1deae9bb940c&showtopic=49571&pid=244126&st=0&#entry244126
There’s a boot script at /etc/init.d/boot.local. Add
modprobe ath_pci
sleep 5
ifup ath0
sleep 5
sloik2004 Lab Notes
It’s so much easier in Linux, but this page finally revealed what it takes.
http://kennethhunt.com/archives/000173.html
Recursive Find Text String In Files, Output Line Number:
FOR /R c:\~kenneth %v IN (*.css) DO find /N /I “#banner” “%~fv” >> test.txt
sloik2004 Lab Notes