unixindia.blogspot.com unixindia.blogspot.com

unixindia.blogspot.com

Unix-India

A blog by latheefp@gmail.com. Tuesday, 17 February 2015. Solaris User password reset non-interactive script. This script can be used for changing the password of Solaris system trough non-interactive script. This can be run like. Var/tmp/changepass.sh username password. Same script can be downloaded here. Purpose:changing Oracle Solaris password using script. If [ "$x$passtxt" = "$x" ]; then. Echo "Empty password provided, Existing". If [ "$x$user" = "$x" ]; then. Echo "Empty user provided, Existing".

http://unixindia.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR UNIXINDIA.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

February

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.2 out of 5 with 6 reviews
5 star
2
4 star
1
3 star
1
2 star
0
1 star
2

Hey there! Start your review of unixindia.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.1 seconds

FAVICON PREVIEW

  • unixindia.blogspot.com

    16x16

  • unixindia.blogspot.com

    32x32

  • unixindia.blogspot.com

    64x64

  • unixindia.blogspot.com

    128x128

CONTACTS AT UNIXINDIA.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Unix-India | unixindia.blogspot.com Reviews
<META>
DESCRIPTION
A blog by latheefp@gmail.com. Tuesday, 17 February 2015. Solaris User password reset non-interactive script. This script can be used for changing the password of Solaris system trough non-interactive script. This can be run like. Var/tmp/changepass.sh username password. Same script can be downloaded here. Purpose:changing Oracle Solaris password using script. If [ $x$passtxt = $x ]; then. Echo Empty password provided, Existing. If [ $x$user = $x ]; then. Echo Empty user provided, Existing.
<META>
KEYWORDS
1 unix india
2 search this blog
3 loading
4 usr/bin/bash
5 owner platheef@gmail com
6 ts=`date %h %d %h %m %s %y `
7 shadow=/etc/shadow
8 passtxt=$2;
9 user=$1;
10 exit 8
CONTENT
Page content here
KEYWORDS ON
PAGE
unix india,search this blog,loading,usr/bin/bash,owner platheef@gmail com,ts=`date %h %d %h %m %s %y `,shadow=/etc/shadow,passtxt=$2;,user=$1;,exit 8,exit 7,id $user /dev/null,if $,exit 6,export user=$user,pass=`cat /tmp/pass $user`,echo $pass,exit 5
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Unix-India | unixindia.blogspot.com Reviews

https://unixindia.blogspot.com

A blog by latheefp@gmail.com. Tuesday, 17 February 2015. Solaris User password reset non-interactive script. This script can be used for changing the password of Solaris system trough non-interactive script. This can be run like. Var/tmp/changepass.sh username password. Same script can be downloaded here. Purpose:changing Oracle Solaris password using script. If [ "$x$passtxt" = "$x" ]; then. Echo "Empty password provided, Existing". If [ "$x$user" = "$x" ]; then. Echo "Empty user provided, Existing".

INTERNAL PAGES

unixindia.blogspot.com unixindia.blogspot.com
1

Unix-India: October 2010

http://unixindia.blogspot.com/2010_10_01_archive.html

A blog by latheefp@gmail.com. Tuesday, 26 October 2010. Mounting LVM volume after reinstalling Linux. Today, I reinstalled my Linux box with latest Redhat version, but I failed to mount the LVS from two application VGs, which are from SAN. Below are the steps how i resolved the issue. For listing and checking the status of available SAN disks (pv-physical volumes). Here, all three disk are visible including vlgroup00 (its is the OS volume). PV VG Fmt Attr PSize PFree. Now let us import it. Now let us see...

2

Unix-India: January 2010

http://unixindia.blogspot.com/2010_01_01_archive.html

A blog by latheefp@gmail.com. Tuesday, 12 January 2010. Checking file system capacity. This simple script is desinged to check the filysystem capacity. This path to this script cab be included in user profile so that it can give a message to user when he loges in. LIMIT=90 #- here it gives message if its more than 90% full. FS=apps #- mount point to check. CAP=`df -h /$FS grep $FS awk {'print $5'} cut -d % -f1`. If [ $CAP -gt $LIMIT ]. Echo "Dear user, please clean /$FS since it is $CAP% full".

3

Unix-India: July 2010

http://unixindia.blogspot.com/2010_07_01_archive.html

A blog by latheefp@gmail.com. Thursday, 15 July 2010. Deporting and importing Veritas volumes- simple steps. We are going to deport chg2 dg from node1 and and import on node2. List the existing VGs. Root@node1 # vxdg list. Locksdg enabled,shared,cds 1279009022.267.node1. Ch2 dg enabled,cds 1279010647.271.node1. Infranet dg enabled,shared,cds 1279010983.273.node1. Unmount all the file systems related to ch2 dg from node1. Root@node1 # df -h grep ch2 dg. Root@node1 # umount /opt/ch2/rel. Links to this post.

4

Unix-India: Solaris User password reset non-interactive script.

http://unixindia.blogspot.com/2015/02/solaris-user-password-reset-non.html

A blog by latheefp@gmail.com. Tuesday, 17 February 2015. Solaris User password reset non-interactive script. This script can be used for changing the password of Solaris system trough non-interactive script. This can be run like. Var/tmp/changepass.sh username password. Same script can be downloaded here. Purpose:changing Oracle Solaris password using script. If [ "$x$passtxt" = "$x" ]; then. Echo "Empty password provided, Existing". If [ "$x$user" = "$x" ]; then. Echo "Empty user provided, Existing".

5

Unix-India: June 2014

http://unixindia.blogspot.com/2014_06_01_archive.html

A blog by latheefp@gmail.com. Monday, 23 June 2014. Cakephp: Verifying the post data Failure. When you save your data to DB using Model, some time if fails without any message, you can use codes to check what is happening. If the save fails, you will get print of data, validation error if any, and SQL statement executed. If ($this- Client- save($data) {. This- Session- setFlash("Client Added");. To print the data itselft. To print the Validation Errors. To print the SQL statements. Monday, June 23, 2014.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

OTHER SITES

uniximmo.net uniximmo.net

IIS Windows Server

uniximoveis.com uniximoveis.com

Unix Consultoria Imobiliária - Imóveis em Campos dos Goytacazes - RJ

Rua Nações Unidas, nº 134. Campos dos Goytacazes - RJ. São Francisco de Itabapoana. São João da Barra. 20 mil a 50 mil. 50 mil a 100 mil. 100 mil a 200 mil. 200 mil a 400 mil. 400 mil a 600 mil. 600 mil a 800 mil. 800 mil a 1 milhão. 1 milhão a 3 milhões. 3 milhões a 6 milhões. 6 milhões a 12 milhões. Acima de 12 milhões. 300 reais a 500 reais. 500 reais a 800 reais. 800 reais a 1.200 reais. 1200 reais a 1.500 reais. 1500 reais a 2.000 reais. 2000 reais a 5.000 reais. 5000 reais a 10.000 reais. ÓTIMA CAS...

unixin.com unixin.com

欣欣网络书库-http://www.unixin.com/---玄幻魔法,武侠仙侠,浪漫言情,现代都市,历史,军事,游戏,竞技,科幻,灵异,美文,同人小说

书库共有1279600部作品 - 显示最新更新的100部作品 - 按更新时间排序. 如果侵犯了您的权利或权益,请来信告知,邮箱:unixinxin#126.com(发信请将"#"改成"@")!

unixinator.com unixinator.com

Welcome to nginx on Debian!

Welcome to nginx on Debian! If you see this page, the nginx web server is successfully installed and working on Debian. Further configuration is required. For online documentation and support please refer to nginx.org. Tool to report bugs in the nginx package with Debian. However, check existing bug reports. Before reporting a new bug. Thank you for using debian and nginx.

unixinc.jp unixinc.jp

プラスチック・メタルの材料商社、ユニックス | 福井県

セルロイド 、 セルロース系アセテート の2種類があります。

unixindia.blogspot.com unixindia.blogspot.com

Unix-India

A blog by latheefp@gmail.com. Tuesday, 17 February 2015. Solaris User password reset non-interactive script. This script can be used for changing the password of Solaris system trough non-interactive script. This can be run like. Var/tmp/changepass.sh username password. Same script can be downloaded here. Purpose:changing Oracle Solaris password using script. If [ "$x$passtxt" = "$x" ]; then. Echo "Empty password provided, Existing". If [ "$x$user" = "$x" ]; then. Echo "Empty user provided, Existing".

unixindia.in unixindia.in

Work in Progress....

We are currently updating our website.

unixindo.com unixindo.com

UNIXINDO Training, Consulting & Sytem Developer | Best Partner for your Solution

UNIXINDO Training, Consulting and Sytem Developer. Best Partner for your Solution. 20 22 Februari 2017 Rp. 6.000.000/peserta di Yogyakarta 06 08 Maret 2017 Rp. 6.000.000/peserta di Yogyakarta 24. IT PROJECTS/ PRACTICAL PLANNING AND CONTROLLING PROJECTS. 08 10 Februari 2017 Rp. 6.000.000/peserta – Yogyakarta TRAINING OVERVIEW IT PROJECTS: Pelatihan Practical Planning and Controlling Projects/IT Projects akan. BUDGETING, PROFIT PLANNING AND CONTROL. Pasti Jalan Agustus 2016. Pasti Jalan Desember 2016.

unixindustries.com unixindustries.com

Price Request - BuyDomains

Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.

unixindustriesinc.com unixindustriesinc.com

Unix: Home

All trademarks are proprietary to our customers and Unix Industries, Inc. is not authorized to sell any of the associated products.

unixinegypt.com unixinegypt.com

UNIX in Egypt

UNIX Professionals and Freelancing Services. Small and Medium Enterprise/Data Centers. It's our job to dive in. Just when you think there is no way, we can help you. Follow us on Facebook! Services we offer as freelancers. We provide infrastructure freelancing service inside and outside Egypt. We have hourly and daily rate based on the size of the task, we do project based freelancing as well. Read more. We offer freelancing services for operating system and UNIX/Linux . UNIX in Egypt 2015.