Search Results

Search: Posts Made By: droid
3,197
Posted By droid
Hi, it depends on the operating system you are...
Hi,
it depends on the operating system you are using and which program does the logging.
949
Posted By droid
The Makefile is an input file for the make...
The Makefile is an input file for the make command. Like:
make Makefile

A simple explanation of the syntax:
Makefile Tutorial (http://mrbook.org/tutorials/make/)
2,209
Posted By droid
Hi, check if the variable is empty before using...
Hi,
check if the variable is empty before using it:


if (defined ($row->[20]) ) {....
1,451
Posted By droid
Try: awk ' NF == 3 { a=$1; b = $2; c=$3 ;...
Try:
awk ' NF == 3 { a=$1; b = $2; c=$3 ; readline}; { print $1, b, c }' INPUTFILE


droid
2,136
Posted By droid
I suggest you begin with a tutorial. BASH...
I suggest you begin with a tutorial.

BASH Programming - Introduction HOW-TO (http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html)
7,710
Posted By droid
Just use parenthesis, if you want to run a...
Just use parenthesis, if you want to run a command in the background:


alias f='(find . >found 2>/dev/null &)'
f ; sleep 20 ; ls -l
30,467
Posted By droid
Start with: rpm -qa to locate installed rpm...
Start with:
rpm -qa
to locate installed rpm packages.
If you also have a newly installed red hat server of the same version, then you can compare the mount points and directories.

df

find /...
8,097
Posted By droid
The directory may contain special files or links....
The directory may contain special files or links.
I suggest using:
ls -lA | grep -c "^d"

for directories

and

ls -lA | grep -c "^-"
for files

ciman
37,614
Posted By droid
Hi, I would use sed find . | sed -n...
Hi,
I would use sed
find . | sed -n '/[0-9]\{8\}/p'
ciman
Forum: IP Networking 04-27-2010
4,829
Posted By droid
Hi, does the server have more than one IP...
Hi,
does the server have more than one IP address or more than one name for the given IP?
How do the clients connect to the server: IP address, local name resolution, internet dns?
Which HTTP...
Forum: IP Networking 04-26-2010
4,829
Posted By droid
Local Lan, no-ip directed DNS forward, surf within lan
Hi Lawstudent,
how did you link the css file? Is it in a local directory?
Check the virtual host sections of the HTTP server configuration.

I need more information about the network and HTTP...
Showing results 1 to 11 of 11

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