Search Results

Search: Posts Made By: timontt
12,329
Posted By timontt
or you may try to man mailx to see any option for...
or you may try to man mailx to see any option for "from"... some mail/malix can do like
eg. mailx -r fromemailaddress ....

thanks!
2,544
Posted By timontt
basically to schedule a cron job, just need to...
basically to schedule a cron job, just need to ensure the script with path is executable, test to run it manually with right account. Then schedule in crontab and monitor the cron log (eg....
2,544
Posted By timontt
what error message from the cron log or any other...
what error message from the cron log or any other error messages ??
15,735
Posted By timontt
Try this way, as the output of df will multiple...
Try this way, as the output of df will multiple lines, so need to exclude and get only filesystem mount point...

df -k | sed 's/%//'|grep -vE "^/dev|^Filesystem" |awk '{if ( $4 > 43 ) print $0 }'...
4,406
Posted By timontt
Use paste command, man for more info... Thanks! ...
Use paste command, man for more info... Thanks!
[root@ganen test]# cat x1.txt
1 2
3 4
5 6
[root@ganen test]# cat x2.txt
7 8
9 10
11 12
[root@ganen test]# paste -d" " x1.txt x2.txt
1 2 7 8...
12,802
Posted By timontt
if just need to get col after 5th comma, try...
if just need to get col after 5th comma, try below

cat csvfile | awk -F, '{print $6}'

Thanks!
5,502
Posted By timontt
Have a check on maillog, see why the mail can't...
Have a check on maillog, see why the mail can't delivered... Thanks!
2,293
Posted By timontt
With following command, it only redirect the...
With following command, it only redirect the attachment.log content into mail body, whereas with uuencode, it can encode any type of files such as programs, video, images or etc... in textual message...
4,505
Posted By timontt
cool, i like the tr way... Thanks! Below is...
cool, i like the tr way... Thanks!

Below is a another way...
for i in `cat filename`;do
printf "$i " >> newfile
done
Forum: Cybersecurity 02-09-2009
2,314
Posted By timontt
Qmail: How to disable EhloCheck
Hi,

Any idea how to turn off/disable qmail smtp EhloCheck? Thanks!
Forum: HP-UX 02-09-2009
10,539
Posted By timontt
Basically for h/w diagnostic, check... - dmesg ...
Basically for h/w diagnostic, check...
- dmesg
- syslog.log
- ioscan (look for any unclaim device)
- cstm

use man to see more details info...
11,353
Posted By timontt
Not sure what modem that you are using, check how...
Not sure what modem that you are using, check how to SSH to modem and get it reset, then put in script. For a start, try to google for understand shell scripting about the syntax and etc....

The...
5,739
Posted By timontt
You may try this and also try man grep for more...
You may try this and also try man grep for more info...
# grep -r sequentialInsert ~cs252/Assignments/commandsAsst/project
Forum: Solaris 03-11-2008
26,338
Posted By timontt
Thanks... guys.... :)
Thanks... guys.... :)
Forum: BSD 03-11-2008
44,686
Posted By timontt
Try... whereis groupadd or use find...
Try...
whereis groupadd

or use find command to locate the file..
Forum: HP-UX 03-10-2008
6,825
Posted By timontt
You can add account with useradd, try to man...
You can add account with useradd, try to man useradd and set the shell to /bin/false, then set a password for it with passwd.
or
alternative way, use sam to add...
Forum: Solaris 03-10-2008
26,338
Posted By timontt
How to set history key in Solaris
Hi Solaris guys,

I just have my solaris 10 setup on x86 old box...
How can i get history key?
eg.
Linux using up/down arrow key to call history command...
HPUX using Esc-k

How can i do the...
Forum: HP-UX 03-10-2008
2,227
Posted By timontt
This is common question, Refer SSH login...
This is common question,
Refer SSH login without password (http://linuxproblem.org/art_9.html)

or you may do a quick google search...

Hope this will help
Forum: HP-UX 03-10-2008
6,825
Posted By timontt
user account are in /etc/passwd, check in system...
user account are in /etc/passwd, check in system log what user failed with, is login id or incorrect password...
2,081
Posted By timontt
The simple way as below >> file content ...
The simple way as below

>> file content
[root@ganen test]# cat testfile
total 150
drwxr-xr-x 2 root root 4096 Mar 27 2007 bin
drwxr-xr-x 4 root root 1024 Aug 19 2006 boot
drwxr-xr-x ...
2,721
Posted By timontt
May try this way... grep car file >...
May try this way...

grep car file > /dev/null
if [ $? -eq 0 ]; then
sed 's/car/bus/g' file
else
do something else
fi
12,459
Posted By timontt
Got this from google search... hope it help to...
Got this from google search... hope it help to understand...

A Unix shell, also called "the command line", provides the traditional user interface for the Unix operating system and for Unix-like...
4,848
Posted By timontt
Never heard of this, to start a script right...
Never heard of this, to start a script right after a ftp transfer, may be you want to share what your need here...

Will the ftp log good enough for you

eg.
Tue Mar 4 15:37:18 2008 3...
4,126
Posted By timontt
If you want to remove "files2/" from the file...
If you want to remove "files2/" from the file itself, vi the file and type below and enter

:%s/^files2\///g


If you want to repalce from grep output

# grep files2 filename | sed...
3,767
Posted By timontt
or an alternative way, install vmware workstation...
or an alternative way, install vmware workstation on yr windows box, then you can have Linux install on it, where give you more feel and control...
Showing results 1 to 25 of 43

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