SysAdmin Blog, TechTips and Reviews

Unix SysAd's Technology Blog




Archives Posts

2 Newest Wordpress Plugin in Sysadmindayph

January 19th, 2010 by elizar

There’s this 2 new Wordpress plugin here in Sysadmindayph dot com (the newest that I installed at least). I just want to share this one for the readers of this blog who is also Wordpress user.

The two new plugins here are:

SEO Smart Link – SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags on your blog.

Broken Link Checker – This plugin will monitor your blog looking for broken links and let you know if any are found.

Filed under Blog, Tips, Wordpress having No Comments »

Archives Posts

SVM: Determine Free Space on Soft Partition

December 3rd, 2009 by elizar

SVM: Determine Free Space on Soft Partition , we use the metastat -c command…

[root@localhost] /work/users> metastat -c d103
d103 p 32GB d100
d100 m 68GB d101 d102
d101 s 68GB c1t2d0s0
d102 s 68GB c1t3d0s0

[root@localhost] /work/users> metastat -p d103
d103 -p d100 -o 32 -b 58720256 -o 127926432 -b 8388608
d100 -m d101 d102 1
d101 1 1 c1t2d0s0
d102 1 1 c1t3d0s0

So from the first metastat -c d103.. that’s a mirrored 68G partition, d100 and a 32G soft partition d103.. We still have around 35G of space.

update: — someone comment please.. this information is incomplete!

Filed under Commands, Solaris, Tips having No Comments »

Archives Posts

BMC/Veritas Netbackup Daemon (bpcd bprd) Restart

November 18th, 2009 by elizar

Here’s some tips in bouncing off NBU client daemon. BMC Netbackup (formerly with Veritas apparently) may have a number of ways to accomplish this (specially if you’re not the backup admin) and depending on the version of the Netbackup software.

The following general guidelines can be used to determine if a restart of NetBackup is required after making changes to the /usr/openv/netbackup/bp.conf file on a system.

Read the rest of this entry »

Filed under Tips having No Comments »

Archives Posts

Metastat Needs Maintenance Metareplace

November 15th, 2009 by elizar

Guilty! Putting all those Metastat keywords on one subject, that’s me! ANyway, I don’t want to stale this blog so once in a while I’m going to be posting some bits and pieces of Unix tools/tips.. and here’s a new one about SVM… Responding to Disk Errors courtesy of BigAdmin!

Read the rest of this entry »

Filed under Solaris, Solaris 10, Tips having No Comments »

Archives Posts

Send Break on SPARC Enterprise T5120 – Send Break on ILOM

October 15th, 2009 by elizar

Send Break on SPARC Enterprise T5120 – well it for the T5000 series I guess, the newer ones. Or “Sending Break onan ILOM..

“->” = ILOM
“sc>” = ALOM

.. and since this particular server has the “->” prompt we’re using the ILOM.

From ILOM to Solaris:
-> start /SP/console

From ALOM to Solaris:
sc> console

And of course.. Enter “#.” to return to ALOM / ILOM !!

Send Break on ILOM

set /HOST send_break_action=break
and then
start /SP/console

c)ontinue, s)ync, r)eset? s

bada bing! bada boom!

Archives Posts

Transfer Firefox Settings to New Computer

September 25th, 2009 by elizar

How do you transfer all the nice little Firefox settings, bookmarks, plugins and addons that you already have on your old computer to your new one? I’m sure there must be some configuration file somewhere in your program files or the code of firefox itself, but for use not so fluent with firefox, we can use 3rd party tools.

Firefox Extension Backup Extension (FEBE)

FEBE allows you to quickly and easily backup your Firefox extensions. In
fact, it goes beyond just backing up — It will actually rebuild your
extensions individually into installable .xpi files. Now you can easily
synchronize your office and home browsers.
FEBE backs up your extensions, themes, and (optionally) your bookmarks,
preferences, passwords, cookies and just about everything else Firefox
offers (it can even backup/restore your entire profile).

Backups can be performed on demand or scheduled for daily, weekly, or
monthly unattended runs.

mozilla addons url:https://addons.mozilla.org/en-US/firefox/addon/2109

MozBackup

MozBackup is a simple utility for creating backups of Mozilla
Firefox,
Mozilla Thunderbird, SeaMonkey, Mozilla Suite and Netscape profiles.
*It allows you to backup and restore* bookmarks, mail, contacts, history,
extensions, cache etc. It’s an easy way to do Firefox backup, Thunderbird
backup .

the homepage url:http://mozbackup.jasnapaka.com/

Filed under Internet, Play Time, Tips having 1 Comment »

Archives Posts

UX: usermod: WARNING: Group entry exceeds 2048 char: /etc/group entry truncated

September 12th, 2009 by elizar

“UX: usermod: WARNING: Group entry exceeds 2048 char: /etc/group entry truncated”

That’s today’s error,.. you wake up, logged and that’s the request that get slapped on you face…

This is when you try to add or modify a user’s group membership with ‘usermod -G’.. It usually happen when the group has tons of members and using usermod will fail as says that it exceeds… blah blah..

Edit the /etc/group file by hand.. take note though that doing a quick ‘/’ search for the group name will give you a ‘truncated’ message or something…

Find the group name manually, append the user account to the beginning of the list.

Filed under Tips having No Comments »

Archives Posts

Exiting from Container Console if forgot to specify an escape character…

August 14th, 2009 by elizar

Once you have a non-global zone installed or running on a Solaris 10 installation, it is often useful to connect to the console of the zone. This provides the same control over the zone as connecting to the console of a physical server running Solaris.

To connect to the console of a Solaris 10 zone called testzone, use the following command as root or the equivalent on the global zone:

zlogin -C testzone

The -C option specifies a console login. The console login will persist when the zone is rebooted.
To exit zlogin, use the escape sequence ~. on a new line (the tilde must follow a carriage return, not any other character). If this escape character is inappropriate (because you are connected using software like tip that also uses this escape sequence), you can specify a different escape character on the command line. For example, to use the @ symbol, use:

zlogin -C -e @ testzone

In this case, to exit the zlogin console session, type @. on a new line

Just a note of reference, if you are using tip and forget to change the escape character above. you can do the following to get out

~~.

This will force it to disconnect the local zlogin instead of the tip…
—-
However, let’s go deeper….

If you logged into a container’s console (via chs000xx —> ILOM —> then to a serial console)..


#. – will exit to ILOM (but once you logged in again.. you’re in container’s console)
~. – will exit to chs000xx (but once you logged in again.. you’re in container’s console)
~~. – WILL EXIT from the Container!!


It’s a like an hierarchy thingy..


(first part was taken from a website… later part was from me.. of course if you didn’t read all of it, you wont see this note.. :D )

http://sysadmindayph.com/

Archives Posts

Top equivalent for AIX – Topas, Only Better

June 24th, 2009 by elizar

Top equivalent for AIX – Topas, Only Better… That’s what I searched when I got a ticket from one of the AIX boxes here complaining about CPU being 99% used up.

Of course, you can use vmstat with interval, but for those sysadmin folks who are use to using Top, its still more comfortable using (and seeing) the top output.

Topas is the equivalent of Top for AIX.. it’s better than Top as a matter of fact according to some AIX gurus (and Solaris)

If you persists in using top, You’ll have to build it yourself from the sources at http://www.unixtop.org/ plus probably this fix: 

        http://sourceforge.net/tracker/index.php?func=detail&aid=934590&group_id=72892&atid=536044

Good luck!

 

Archives Posts

wpv991242765100 – viruses, spyware, adware, trojans, rootkits, worms?

June 17th, 2009 by elizar

wpv991242765100.exe – What is it? You may be wondering what this filename or process is when you try and searching for any malicious application running in you Windows XP/VIsta machine.. (via Task manager).

wpv991242765100.exe’s  could be viruses, spyware, adware, trojans, rootkits, worms, information stealers, keyloggers, bots… I for one is not sure, but I also have this process running in my windows machine and I just discovered that this is the culprit on some of my computer problems.

Problems Caused by wpv991242765100.exe

To list a few of the nuances that this process is doing on my Viao laptop *grin*:

  • Prevented me from connecting to company’s VPN
  • Prevents firefox to launch (and IE for that matter)
  • No internet on firefox, but fine with IE
  • and probably others.

Read the rest of this entry »

« Previous Entries