Saturday, March 20, 2010 23:17

‘IT Consultant’ News

Subscribe to RSS feed

Lotus Notes and Domino

Thursday, March 4, 2010 21:44

Download a free trial version of IBM® Lotus Notes® 8 software -- showcasing a modern, Web-like look-and-feel in a familiar Lotus Notes client format. It’s visually appealing, highly consistent and feature rich. Offering e-mail, calendar and scheduling, personal journal, to-do lists, support for innovative business solutions ...

Tagged with:

Platform Status: libjvm.so: cannot open shared object file: No such file or directory

Friday, January 29, 2010 21:46

Error " Generic Status: Library Open failed, Library Name: /dctm65/shared/java/1.5.0_12/jre/lib/i386/libjava.so, Platform Status: libjvm.so: cannot open shared object file: No such file or directory IDQL failed to run.  dmAPIInit() returned a failed status. " was thrown when executing IDQL command. I came across this issue after I installed one docbase on linux server. It seemed that ...

Tagged with: ,

chown – change the owner of a file

Thursday, January 28, 2010 13:34

You can change the owner and group of a file or a directory with the chown command. Please, keep in mind you can do this only if you are the root user or the owner of the file. Set the file's owner: $ chown username somefile After giving this command, ...

Tagged with:

An internal virtual machine error (13) has occurred

Thursday, January 28, 2010 12:13

when I booted the Red Hat WS 4 image, I received the following error: "An internal virtual machine error (13) has occurred.  The virtual machine will reset now." To resolve this error, first boot in single user mode: In GRUB menu select Red Hat Linux with the version of ...

Tagged with:

Linux Find Files Containing Text

Wednesday, January 27, 2010 13:54

Find files that contain a text string: grep -lir "some text" * The -l switch outputs only the names of files in which the text occurs (instead of each line containing the text), the -i switch ignores the case, and the -r descends into subdirectories.

Tagged with:
Set outlook to receive mails automatically

Set outlook to receive mails automatically

Wednesday, January 6, 2010 11:44

1.工具->选项 2.选择“邮件设置”选项卡 3.点“发送/接收(S)…”按钮 4.点“编辑”按钮 将不需要和不能在公司内部接收的账户去除(比如公司邮箱外部接收的账户)

Tagged with:

Do not show password in windows console use cmd commands

Monday, January 4, 2010 11:38

echo hP1X500P[PZBBBfh#b##fXf-V@`$fPf]f3/f1/5++u5x>in.com set /p password=Password:<nul for /f "tokens=*" %%i in ('in.com') do set password=%%i del in.com echo Password is %password%

No network provider accepted the given network path

Monday, December 21, 2009 15:17

When you try to access a network path (FQDN) by “start”-“run”-”\\machine_name\share_name”, and meet error message “No network provider accepted the given network path.” But when you open the Command Console (“start“-“run“-“cmd“), you can ping that machine successfully by using the FQDN. If you meet this situation, run “sfc /scannow” may be able ...

Tagged with:

IF Else in bash of linux

Friday, December 18, 2009 13:31

If/Else In order for a script to be very useful, you will need to be able to test the conditions of variables. Most programming and scripting languages have some sort of if/else expression and so does the bourne shell. Unlike most other languages, spaces are very important when using ...

Tagged with:

Copy and Paste in VI

Friday, December 18, 2009 13:27

The command ‘Y’ or ‘yy’ copies (yanks) one or more lines. To copy one line, two lines, 10 lines, and all lines to the end of the file, respectively: Y 2Y 10Y yG To paste the text contained in the buffer above (uppercase P) or below the current cursor position (lowercase p), respectively: P p It is also ...

Tagged with: