0

HPACUCLI

What to do when hpacucli is locked but there is no process for it # hpacucli HP Array Configuration Utility CLI 7.50.18.0 Detecting Controllers… Error: Another instance of ACU is already running (possibly a service). Please terminate the ACU application before running the ACU CLI. # ps -ef | grep -i acu root     26127 11377  0 15:12 pts/3    00:00:00 grep -i acu goto /opt/compaq/cpqacuxe/bld/locks and remove all the files in that directory then run hpacucli

0

Installing Asian (CJK) fonts on customized/nLited XP installs

Performance freaks often resort to customized versions of Windows XP such as TinyXP made possible by tools such as NLite because these versions of customized windows help your computer to run faster. Unfortunately they sometimes also ship without features that might be essential to some of us, such as Korean language support. Heres a guide on how to re-enable korean or other East Asian language support for TinyXp or N-Lited versions of Windows. 1) Insert an original Windows XP cd in your cd drive, or mount the Windows XP iso that you have backed up into a virtual drive. 2)… Continue Reading

0

awk stuff

print all lines in a file that match some pattern awk ‘$0 ~ /pattern/ {print $0}’ awk ‘NR % 6’ # prints all lines except those divisible by 6 awk ‘NR > 5’ # prints from line 6 onwards (like tail -n +6, or sed ‘1,5d’) awk ‘$2 == “foo”‘ # prints lines where the second field is “foo” awk ‘NF >= 6’ # prints lines with 6 or more fields awk ‘/foo/ && /bar/’ # prints lines that match /foo/ and /bar/, in any order awk ‘/foo/ && !/bar/’ # prints lines that match /foo/ but not /bar/ awk… Continue Reading

0

Windows XP SP2 32비트 & 64비트

스샷은 DELL에서 OEM 확인을 위한겁니다. 자료를 하드에서 삭제하기전 마지막 공유입니다. OEM은 ASUS, DELL, LG, SAMSUNG, SONY, 주연입니다. 각사별 원본이 아니라 리테일 CD에 라이센스 파일 추가로 만든겁니다. 바이오스에 OEM정보가 들어있는(정품 OEM 또는 바이오스가 XP OEM용으로 개조된) PC에서 정품인증됩니다. VISTA용 바이오스 개조와 XP용 바이오스 개조는 다릅니다. VISTA용으로 개조하였다고 XP에서 자동인증이 된다고 생각하지 마십시요. 크랙이나 인증툴은 없습니다. 만약 필요하시다면 별도로 구하셔야 합니다. AMI 바이오스는 비스타용으로 개조시 대부분 자동개조툴로 하는데 그 툴은 XP용과 비스타용으로 동시에 개조합니다만 XP용과 VISTA용의 OEM이 다를수도 있습니다. 어떤 OEM으로 하였는지 확인해 보십시요. DELL 확인 방법과 똑같이 하되 찾는 문자를 ASUS_FLASH로 하여 문자가 있다면 ASUS용으로 개조된 겁니다. 자신의 OEM을 확실히 알고 있다면 굳이 검사할 필요는 없습니다. OEM                      … Continue Reading

0

opensolaris part 4 synergy

I use synergy to control my workstation from my laptop and the following the steps on how I got synergyc working on opensolaris. I’ve used the blastwave version and installed it using pkg-get -i synergy Edited the following files /etc/X11/gdm/Init/Default towards the top /bin/pkill synergyc /bin/sleep 1 /opt/csw/bin/synergyc -n hostname synergyserver /etc/X11/gdm/PreSession/Default again towards the top /bin/pkill synergyc /bin/sleep 1 /etc/X11/gdm/Xsession /bin/pkill synergyc /bin/sleep 1 /opt/csw/bin/synergyc -n hostname synergyserver

0

opensolaris part 3 samba!

So I am hearing all these great things about opensolaris and zfs and this new cifs server and wanted to try it out.  On my old workstation I had a 20g /data that I used to store files and map it to my laptop to share that directory The default install does not include the smb server so the following packages had to be installed SUNWsmbfskr and SUNWsmbskr and SUNWsmbs svcadm enable -r smb/server Since the disk was dont as a zfs during the installation all I had to do was to create my zfs mount My zfs container was… Continue Reading

0

opensolaris packages part 2

Now to install some software…. Wanting to add some packages from blastwave I added the blastwave repo to the “pkg” listing pkg set-authority -O http://blastwave.network.com:10000 blastwave Wanting to not install too many 3rd party software I only installed synergy pkg install synergy Now from the opensolaris side I wanted to include everyday tools to make this a nice desktop so I installed openoffice and various other software.  You can search for software by doing pkg search <tag> or launch the package manager in the gui and get a full list of packages One additional software package I wanted to add… Continue Reading

0

opensolaris for the first time

So I was bored with my workstation and decided to switch OS.  I’ve tried openSUSE but did not like it and wanted something new and different.  So I picked opensolaris.  It took several tries(crashes) to finally have this up and running with the latest code and the way my old workstation was setup. This is a old workstation a Compaq Evo with P4-2.4 and 1G of memory and a onboard e100 card. I booted the machine using the 2008.05 LiveCD and installed the Live image.  So far so good. Rebooted and found that my NIC was not working… after looking… Continue Reading