Search Results

Search: Posts Made By: lifegeek
5,719
Posted By lifegeek
After reboot, CDE and cifs are not working
I installed bos.cifs_fs, bos.loc.iso.ko_KR, X11.fnt.ucs.ttf_KR, X11.fnt.ksc5601.ttf on p520 express, AIX 5.3
and upgraded the system from 5.3 TL7 SP? to 5.3 TL7 SP10
and rebooted the system....
3,903
Posted By lifegeek
how to create multiple-boot system with disks mirrored(RAID1+0) and disk alone
I have a HP proliant ML 570 G3 with two 146GB disk drives mirrored(RAID1+0)
windows server 2003 was installed on that disk.
I will add a disk.(scsi 300GB)
I will install Linux on that additional...
Forum: Solaris 10-19-2009
10,561
Posted By lifegeek
error message rmclomv ... SC Login Failure for user Please login:
Hello World ~

HW : SUN Fire V240
OS : Solaris 8

Error message prompts 'rmclomv ... SC login failure ...' on terminal.
and
Error Message prompts continually 'SC Login Failure for user Please...
Forum: AIX 08-11-2009
6,844
Posted By lifegeek
trying to access CDE on AIX remotely
I am trying to access CDE on AIX5.3 remotely via tsclient(XDMCP)

I installed tsclient and xnest on Linux machines. (Home and Office)

I can access CDE on AIX5.3 from same subnet(In my Office)...
2,994
Posted By lifegeek
Thank you
Life Saver~
It works perfectly
I will learn mod_setenvif

SetEnvIfNoCase Referer "^http://domainname/pic.html$" html_ref=1
Order Allow,Deny
Allow from env=html_ref
Thank you very much~
2,994
Posted By lifegeek
deny directly allow indirectly (.htaccess)
I am running apache web server on CentOS5.2
I have the directory in which stores a lot of images.(/var/www/html/images)
I want to deny everyone from directly accessing the directory but still allow...
4,656
Posted By lifegeek
#! /usr/bin/perl $var="aa bb cc dd"; ...
#! /usr/bin/perl

$var="aa bb cc dd";
@arr=split(" ",$var);
print $#arr+1;


echo $var | awk '{print NF}'
22,185
Posted By lifegeek
It works greatly on UBUNTU ls ???file*.txt |...
It works greatly on UBUNTU

ls ???file*.txt | sed "s/\(...\)\(.*\)\.\(.*\)/mv & \1renamed\2`date +%Y%m%d`.\3/" | sh
2,013
Posted By lifegeek
Thank you all~ Life Saver~ tr "," "." <...
Thank you all~
Life Saver~

tr "," "." < filename | sort -n -t"." -k2,2 -k3,3 -k4,4 | awk -F. '{print $1","$2"."$3"."$4","$5}'
2,013
Posted By lifegeek
how to sort by the date
Hello World~
Please Help Me(BASH)

input:
dde,2007.8.25,891
dde,2007.8.23,356
dfe,2007.10.12,341
cba,2005.12.5,342

I wanna know how to sort by the date(2005.12.5)

output:...
10,473
Posted By lifegeek
great~ thank you~
great~ thank you~
10,473
Posted By lifegeek
Awesome Life Saver~ Thank you very much I...
Awesome
Life Saver~
Thank you very much
I want to study the behavior of bash depends on the way it is invoked
I will check bash source code
10,473
Posted By lifegeek
how does symbolic link execute command with option or parameter
Hello World~:)

$ rbash
$ cd ..
rbash: cd: restricted
$ ls -l /bin/rbash
lrwxrwxrwx 1 root root 4 2008-11-02 15:56 /bin/rbash -> bash
rbash is a symbolic link to bash
but why does rbash...
15,287
Posted By lifegeek
life saver~ thank you! i found another...
life saver~
thank you!

i found another solution

# echo "contact your local administrator" >> /sbin/nologin
# usermod -s /sbin/nologin tom


login: tom
contact your local administrator...
15,287
Posted By lifegeek
I want to change login failure message, "login incorrect"
I want to change login failure message, "login incorrect"

deny user login for user id tom
sudo passwd -l tom

type username and type password on login prompt
and then it will display login...
73,833
Posted By lifegeek
$ sudo debugfs /dev/sda1 [sudo] password for...
$ sudo debugfs /dev/sda1
[sudo] password for testman:
debugfs 1.41.3 (12-Oct-2008)
debugfs: cd /home/testman
debugfs: stat filename
debugfs: quit

or

$ stat filename

you could see...
8,124
Posted By lifegeek
if you use gnome gnome-power-cmd.sh reboot ...
if you use gnome

gnome-power-cmd.sh reboot

as plain user
34,964
Posted By lifegeek
bash is improved version of bourne(sh) i...
bash is improved version of bourne(sh)

i also learned a lot of things from these posts
thank you meetmano143
thank you Klashxx
34,964
Posted By lifegeek
difference between bash(bourne again) and...
difference between bash(bourne again) and sh(bourne)

working
bash rpomon.sh
./rpomon.sh

not working
sh rpomon.sh
34,964
Posted By lifegeek
instead of sh rpomon.sh execute like this :...
instead of sh rpomon.sh

execute like this :
./rpomon.sh

it works in ksh and bash
34,964
Posted By lifegeek
sh rpomon.sh execute like this : ...
sh rpomon.sh

execute like this :
./rpomon.sh
34,964
Posted By lifegeek
i modified #23 please check #23
i modified #23
please check #23
34,964
Posted By lifegeek
if you mean l not | #! /bin/bash ...
if you mean l not |

#! /bin/bash

FIRST=`awk 'BEGIN{FS="l"}NR==1{print $1}' /temp/temp.txt`
SECOND=`awk 'BEGIN{FS="l"}NR==2{print $1}' /temp/temp.txt`
echo $FIRST
echo $SECOND...
34,964
Posted By lifegeek
oh i'm sorry i mix up | and l FIRST=`awk...
oh i'm sorry
i mix up | and l
FIRST=`awk 'BEGIN{FS="l";OFS=" "}NR==1{print $1}' /tmp/temp.txt`
SECOND=`awk 'BEGIN{FS="l";OFS=" "}NR==2{print $1}' /tmp/temp.txt`
34,964
Posted By lifegeek
not : #!/bin/sh FRIST=`echo | awk 'NR==1...
not :
#!/bin/sh

FRIST=`echo | awk 'NR==1 {print;exit}' /tmp/temp.txt`
echo $FRIST
SECOND=`echo | awk 'NR==2 {print;exit}' /tmp/temp.txt`
echo $SECOND

((str=$FIRST-$SECOND))
echo $str
...
Showing results 1 to 25 of 29

 
All times are GMT -4. The time now is 05:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy