./configure : /bin/sh^M : bad interpreter
To fix, open your script with vi or vim and enter in vi command mode (key Esc), then type this: Finally save it :x! or :wq!
To fix, open your script with vi or vim and enter in vi command mode (key Esc), then type this: Finally save it :x! or :wq!
Issues were: IPV6 enabled Wrong DNS server Here is how I fixed it: IPV6 Disabling Open Terminal Type su and enter to log in as the super user Enter the root password Type cd /etc/modprobe.d/ to change directory to /etc/modprobe.d/ Type vi disableipv6.conf to create a new file there Press Esc + i to insert data to file Type install ipv6 /bin/true on the file to … Read more
This happens because you may have done a sudo su user_name and then fired the screen command. There are 2 ways to fix this. Login directly to “user_name” via ssh. Take ownership of the shell by typing script /dev/null as the user user_name and then type screen
I have actually followed this example and it worked for me 🙂 Then do: /etc/init.d/httpd restart
“Resource temporarily unavailable” is the error message corresponding to EAGAIN, which means that the operation would have blocked but nonblocking operation was requested. For send(), that could be due to any of: explicitly marking the file descriptor as nonblocking with fcntl(); or passing the MSG_DONTWAIT flag to send(); or setting a send timeout with the SO_SNDTIMEO socket option.
Use ls command for files and du command for directories. Checking File Sizes ls command will not list the actual size of directories(why?). Therefore, we use du for this purpose. Checking Directory sizes Including -h option in any of the above commands (for Ex: ls -lh * or du -sh) will give you size in human readable format (kb, mb,gb, …) For more information see man ls and man du
You are correctly reading the value at memory address 0x8048f0b, but the line call 8048f0b <strings_not_equal> indicates that this address is the start of a function (called strings_not_equal()). You wouldn’t expect that to be ASCII – you’d expect it to be more machine code. If you’re looking for the function arguments to strings_not_equal(), those are being pushed onto the stack. … Read more
Try ssh -t -t(or ssh -tt for short) to force pseudo-tty allocation even if stdin isn’t a terminal. See also: Terminating SSH session executed by bash script From ssh manpage:
A better way to describe “mount” is “attach”. The filesystem being mounted is attached to an empty directory of the existing filesystem. That is, the top level directory of the mounted filesystem becomes the directory on the existing filesystem. Subdirectories of the mounted filesystem become the subdirectories of the former directory on the existing filesystem, … Read more