run psr.exe
hit record
proceed with the steps
stop and save it.
A web page is displayed with the steps to reproduce the error.
]]>service mgmt-vmware restart
]]>service vmware-vpxa restart
2. Your VM will have a 4 digit number. Then, find the ID to kill (replace 1111 with your number):
# less /proc/vmware/vm/1111/cpu/status
3. Under “group” find the vm.2222. Then type this command to kill the machine:
/usr/lib/vmware/bin/vmkload_app -k 9 2222
=========
For ESX 4:
# /usr/lib/vmware/bin/vmkload_app -k 9 ####
For /F “tokens=1,2* delims=.” %%f In (’Dir /B *.pbs’) Do move “%%f.%%g” “%%f.PBS”
This is a batch file. For command line only, remeber to remove one % for each variable.
]]>To start with, lets look at the license agreement.
Client Access Licensing Requirements
My question was, “What constitutes server software?” The answer I got is if you are connecting to the server, you are using Windows sockets.
A phone call to Microsoft confirmed this.
Common practice today is that if you run a service like Lotus Notes or Apache on a Windows machine, you pay for the Server OS and Lotus Notes client access licenses. With this clarification from Microsoft, you also pay for Windows CALs.
This seems insane to me that Microsoft would take this posistion. It makes Red Hat and Suse Linux support almost free in comparison. Calls to the software business allience now will practically force companys to shell out hundreds of thousands to Microsoft, or convert to Linux.
]]>]]>@echo off
set CURRDATE=%TEMP%\currdate.tmp
date /t > %CURRDATE%
set PARSEARG=”eol=; tokens=1,2,3,4* delims=/, ”
for /f %PARSEARG% %%i in (%CURRDATE%) do set YYYYMMDD=%%l%%k%%jren file.log file_%YYYYMMDD%.log
]]>echo off
REM Student extract processing script
REM
REM Finds the adds and deletes from the sasi export files
REM and saves them to adds.txt and dels.txt
REM
REM Alex trusler
REM
REM Please verify the GnuWin32 bin dir including CoreUtils,
REM DiffUtils, and Grep is in your path before executing script.
REM These tools are available at
REM gnuwin32.sourceforge.net
REM ——————————————————-REM if %2 is NULL then display usage
if exist %2 goto else
echo —
echo —
echo usage: %0 [file1 old] [file2 new]
echo —
echo This script will save the output files
echo in your WORKING directory so change your directory
echo to your target directory.
echo —
echo Also, you can drag the batch file to the command window,
echo Then type a [space], then drag the old Stufile, [space]
echo then drage the new Stufile. Saves a lot of typing.
echo —
echo Please verify the GnuWin32 bin dir including CoreUtils,
echo DiffUtils, and Grep is in your path before executing script.
echo These tools are available at
echo gnuwin32.sourceforge.net
pausegoto eof
:elseREM compair the file from the last import to the current file.
sort %1 > temps1
sort %2 > temps2
diff –ignore-case temps1 temps2 > tempdiffREM format and save the output
grep “> ” tempdiff | cut -b 3-100 > adds.txtREM Cut the first 16 lines to match only the site and stu ID.
cut -b 1-16 temps1 > temps3
cut -b 1-16 temps2 > temps4
diff –ignore-case temps3 temps4 > tempdiffREM format and save the output
grep “< ” tempdiff | cut -b 3-100 > dels.txtREM clean up our garbage
del tempdiff
del temps1
del temps2
del temps3
del temps4REM Tell the user the script has finished
echo Files adds.txt and dels.txt saved.:eof
You can add additional IP addresses to your interface.
edit /etc/sysconfig/network-scripts/ifcfg-eth0:1
My origonal nic is eth0, subinterface is eth0:1
DEVICE=eth0:1
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.1.2
NETMASK=255.255.255.0
BROADCAST=192.168.1.255
NETWORK=192.168.1.0
HWADDR=00:15:58:73:d8:a9
Then bring up the new interface.
]]>ifconfig eth0 hw ether 00:00:00:00:00:00
]]>