| Ubuntu |
| Add gcc, g++ |
| sudo apt-get install libc6-dev libstdc++6-4.0-dev libstdc++6-dev |
| Eclipse |
| https://wiki.ubuntu.com/EclipseIDE |
| Ubuntu, how to change root password, how to su, after installation without setting root password |
| sudo passwd ; --> this change the root password, now you can su; nevetheless, sudo is always the first choice to work as a root. |
| sudo apt-get install make |
| sudo apt-get install xemacs21 |
| sudo apt-get install libc6-dev libstdc++6-4.0-dev libstdc++6-dev (to fix compile errors as follows:
/usr/include/c++/4.0.2/bits/basic_ios.h:68: error: no type named off_type in struct std::char_traits < char > /usr/include/c++/4.0.2/bits/basic_ios.h: In instantiation of std::basic_ios < wchar_t, std::char_traits < wchar_t > > : /usr/include/c++/4.0.2/bits/basic_ios.tcc:195: instantiated from here /usr/include/c++/4.0.2/bits/basic_ios.h:66: error: no type named int_type in struct std::char_traits < wchar_t > |
| Ubuntu, how to add kernel source |
| First, check out your kernel version by command 'uname -r'. You may get a value as "2.6.12-10-386" . Then do sudo apt-get source linux-source-2.6.12 sudo apt-get install build-essential linux-headers-2.6.12-10-386 |
| |