Search Results

Search: Posts Made By: atanubanerji
Forum: Programming 11-17-2017
9,810
Posted By apmcd47
Try this: server_description = "This is xyz abc...
Try this:
server_description = "This is xyz abc of mno CentOS"
my_Check = "CentOS" in server_description
if my_Check == True:
print("This is CentOS")
else:
print("This is NOT CentOS")...
Forum: Red Hat 04-27-2015
1,562
Posted By RudiC
It may well be correct on other servers, but did...
It may well be correct on other servers, but did you check it on that particular server?
Forum: Red Hat 10-25-2014
8,627
Posted By fpmurphy
If SELinux is enabled, try the following with the...
If SELinux is enabled, try the following with the filesystem mounted:

# chcon -R -h -t httpd_sys_content_t /var/www/html
2,091
Posted By rbatte1
Be aware that many crond servers will only read...
Be aware that many crond servers will only read the files at start of on a signal sent by editing a file with crontab -e. You may need to resort to:-crontab -l > /tmp/my_cron
echo "0 * * * *...
Forum: Red Hat 05-03-2013
4,356
Posted By maverick_here
Please try
Please try
24,742
Posted By Yoda
Using single quotes (' ... ') causes the variable...
Using single quotes (' ... ') causes the variable name to be used literally, and no substitution will take place. This is full quoting, sometimes referred to as 'strong quoting.'

Enclosing a...
2,302
Posted By bartus11
You have to escape the double quotes that you...
You have to escape the double quotes that you want to preserve in echo output, like this:echo "user_pref(\"network.proxy.http\", \"$j\");"
Showing results 1 to 7 of 7

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