Changes between Version 3 and Version 4 of Internal/OpenFlow/miscUnix


Ignore:
Timestamp:
Apr 6, 2012, 5:59:36 AM (12 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/miscUnix

    v3 v4  
    8787
    8888you can confirm this with `tail -f` (or the fact that your program has stopped outputting to terminal).
     89
     90== Fixing garbled gcc and man page output. ==
     91On some machines, `gcc` and man pages might produce garbled text. This is usually caused by xterm not supporting UTF-8, or from mismatch in locale information if the garbling is happening when you are working on a remote machine. In either case (for people working with US English), setting LANG to `en_US` or `C` fixes things:
     92
     93{{{
     94$ export LANG=en_US
     95}}}
     96Set it the same for both local and remote machines if it's happening over SSH.