Posts Tagged ‘ Linux

OpenOffice Remove mis-spelled words

beleive or believe?
If you mistakenly add a word to Firefox’s custom dictionary, the word is added to

~/.mozilla/firefox/[unique-alphanumeric-string].default/persdict.dat

just edit the file and remove your mistaken ‘custom’ word.

Command line scp from linux(+BSD) to windows.

i traveling and wanted to copy over my logs to find out what was happening on my server. didn’t want to install a client like filezilla or another GUI. Using the command line utility, you can grab remote files securely over . You can grab the executable from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html (pscp.exe is what you want) then, in the command line on the client machine, type something like this:

pscp -r -P 22 jimmy@johnscomputer.com:/home/jimmy/stuff "c:\documents and settings\jimmy\Desktop"

The “-r” makes it grab the whole folder, and everything under. the “-P” specifies a port (mostly useful if you aren’t using 22. make sure it is capital).