Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
/edit:
Some further information:
libc.so.6 is as you correctly guessed a single file. As far as I can tell it should be at /lib32/libc.so.6 on a 64 bit Ubuntu system.
Also since you couldn't find the /usr folder let me explain that to you: There is the so called root node of your filesystem, which is so to say the lowest point in the filesystem, every folder is a subfolder of the root. This is shown as the leading slash in filepaths. So for example your home folder is "/home/<username>/" which means to get to the root from there you have to go up 2 times. Often your home folder is simply abbreviated "~". Now if you want to cd into "/usr/" you can either just enter "cd /usr" (notice the leading slash) or from your home folder "cd ../../usr" (two dots refer to the folder above)
The reason for all this is, that linux systems are designed with multiple users in mind, so everyone can have their own configurations and stuff in their home folder and systemwide stuff like libraries, systemwide configuration files or systemwide installed programms are stored in other folders(/lib, /etc, and /bin for example)
To find if you have a particular file, you can use the find command for example "find / -name "libc.so.6" -print" to find the libc.so.6 in any folder below the root (/)
Hope that helps :)