Search Results

Search: Posts Made By: frank_rizzo
3,241
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,172
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,292
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,205
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,303
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,840
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,979
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,122
Posted By frank_rizzo
Please paste the output of getfacl dir5 ...
Please paste the output of

getfacl dir5

# as user1
cd dir5
1,019
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,467
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,958
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,551
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,551
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,817
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,353
Posted By frank_rizzo
What shell are you using? echo $SHELL
What shell are you using?

echo $SHELL
1,818
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,684
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,657
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,353
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,618
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,845
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,970
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,063
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
19,156
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,093
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 03:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy