Changes between Version 3 and Version 4 of Internal/OpenFlow/miscUnix
- Timestamp:
- Apr 6, 2012, 5:59:36 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/miscUnix
v3 v4 87 87 88 88 you 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. == 91 On 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 }}} 96 Set it the same for both local and remote machines if it's happening over SSH.