WordPress database error: [Disk full (/tmp/#sql-temptable-1-25959b-28f5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]SHOW FULL COLUMNS FROM `markjacobsen_options`
Ever have a script that is executing another script and get an error that looks like this?…<\/p>\n
\/path\/stub.ksh[2]: \/path\/XX\/script.ksh: not found [No such file or directory]<\/code><\/pre>\nThen you make sure that the file does in fact exist, and that you can read it?<\/p>\n
So why does it say there’s “No such file or directory”?<\/b><\/p>\n
Might want to check if the file has Windows line breaks. Easiest way to do that is run the following…<\/p>\n
cat -v \/path\/XX\/script.ksh<\/code><\/pre>\n… and you’ll probably see that your lines end with ^M characters. If so, you have Window’s line breaks and you might want to look into not introducing them in the first place (save in Unix format), or check out the dos2unix command.<\/p>\nPlease remember to subscribe to the newsletter<\/a> to stay up to date!<\/i>
\n
\nYou or someone you know looking to buy or sell?<\/i>\n<\/a>
\nDisclaimer: Thoughts and opinions are my own, and do not reflect the views of any employer, family member, friend, or anyone else. Some links may be affiliate links, but I don't link to anything I don't use myself. You would think this should be self evident these days, but apparently not...<\/small><\/i>","protected":false},"excerpt":{"rendered":"Ever have a script that is executing another script and get an error that looks like this?… \/path\/stub.ksh[2]: \/path\/XX\/script.ksh: not found [No such file or directory] Then you make sure that the file does in fact exist, and that you can read it? So why does it say there’s “No such file or directory”? Might … Continue reading UNIX: No such file or directory but the file exists<\/span>