Search Results

Search: Posts Made By: frank_rizzo
3,131
Posted By frank_rizzo
What TCP service do you expect to be listening on...
What TCP service do you expect to be listening on port 514 on localhost?
2,082
Posted By frank_rizzo
The passphrase is required because you're using...
The passphrase is required because you're using the sign option which signs the file with your key.
1,245
Posted By frank_rizzo
Attach the binary file using the -a option. ...
Attach the binary file using the -a option.
-a file
Attach the given file to the message.
3,121
Posted By frank_rizzo
A minor tip - remove the useless use of cat ...
A minor tip - remove the useless use of cat

change
cat "$BODY_FILE" | mail -s "$SUBJECT" -a "$ATTACHMENT_FILE" "$CC_LIST"

to
mail -s "$SUBJECT" -a "$ATTACHMENT_FILE" "$CC_LIST" < $BODY_FILE
2,265
Posted By frank_rizzo
What have you tried so far? Are you getting...
What have you tried so far? Are you getting errors? Please post the awk commands and any output.
Forum: Red Hat 07-26-2016
1,802
Posted By frank_rizzo
A process is already running that is LISTENing on...
A process is already running that is LISTENing on port 80.

Here is one method to determine the process.
lsof -i -n -P |grep -w :80
10,766
Posted By frank_rizzo
I am not sure if tcpdump supports this but you...
I am not sure if tcpdump supports this but you can with wireshark. You need the private key of course.
1,091
Posted By frank_rizzo
Please paste the output of getfacl dir5 ...
Please paste the output of

getfacl dir5

# as user1
cd dir5
976
Posted By frank_rizzo
-i runs a login shell so your current working...
-i runs a login shell so your current working directory will be set to the home directory of user1. Without this your CWD is not changing and user1 does not have read/execute access on the current...
8,351
Posted By frank_rizzo
random quick idea. make the sudo rule group based...
random quick idea. make the sudo rule group based and setup the job to remove the user from that group on the day the access should be revoked.
2,931
Posted By frank_rizzo
use --connect-timeout TIMEOUT man curl or curl...
use --connect-timeout TIMEOUT man curl or curl --help for the usage.
Forum: Red Hat 10-02-2015
2,519
Posted By frank_rizzo
Good point Don. A better location would be one...
Good point Don. A better location would be one that only root can access like /root assuming the permissions are restrictive 700. Feeding encrypted passwords to a command like chpasswd(8) would also...
Forum: Red Hat 10-02-2015
2,519
Posted By frank_rizzo
Try this instead so the password is not logged to...
Try this instead so the password is not logged to the history.

passwd --stdin username</tmp/secret
1,778
Posted By frank_rizzo
Are you using sssd? How are you connecting to the...
Are you using sssd? How are you connecting to the servers, ssh? Does LDAP authentication work on any client machine? Do all users fail or some? Have you checked /var/log/secure on the failing...
3,306
Posted By frank_rizzo
What shell are you using? echo $SHELL
What shell are you using?

echo $SHELL
1,764
Posted By frank_rizzo
Yes. Use something like the curl(1)...
Yes. Use something like the curl(1) (https://www.unix.com/man-page/all/1/curl) command.
Forum: AIX 05-23-2015
1,655
Posted By frank_rizzo
What you have should work. Spacing should not...
What you have should work. Spacing should not matter before the colon. Are you getting a syntax error? Does named-conf(1) (https://www.unix.com/man-page/all/1/named-checkconf/) run clean? Please...
4,583
Posted By frank_rizzo
I suggest using the flock(1)...
I suggest using the flock(1) (https://www.unix.com/man-page/linux/1/FLOCK/) command.
3,306
Posted By frank_rizzo
That's weird. It's only treated $na as the...
That's weird. It's only treated $na as the variable. Are you typing this out manually?

Try this and see if you get the same results
echo "${name}"
9,493
Posted By frank_rizzo
encoding a string in base64 does not make it...
encoding a string in base64 does not make it secured. base64 is not encryption. use SSH keys and make sure you check all return codes.
5,678
Posted By frank_rizzo
What do you mean by "protect"? Embedding shell...
What do you mean by "protect"? Embedding shell scripts within C++ is not a standard practice IMO.
7,838
Posted By frank_rizzo
The output file is not "blank" -- it's a zero...
The output file is not "blank" -- it's a zero length file. Any time you use the redirection operator > in a command line it will immediately truncate the file to zero regardless of file size. This...
1,037
Posted By frank_rizzo
printf "%03d\n" $i or do it with the seq...
printf "%03d\n" $i
or do it with the seq command if installed.
seq -w 1 100
18,969
Posted By frank_rizzo
Please post your syntax. Are you using the...
Please post your syntax.

Are you using the bcc option?

-b address
Send blind carbon copies to list. List should be a comma-separated list of names.
Forum: IP Networking 11-30-2013
2,052
Posted By frank_rizzo
Configure two external ports to be mapped...
Configure two external ports to be mapped internally to the HTTP and HTTPS ports. Use the external SSL port in your redirects. It depends on how the web application is configured. See also Apache...
Showing results 1 to 25 of 500

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