安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
1. /home is a directory for humans only. System user (that run services) do not own anything in there.
2. steam should be a system user, with its working directory in /var/lib/steam and no group attached (except nogroup).
3. If installed correctly via package manager, steamcmd should reside in /usr/bin or /usr/games (which I despise, but whatever), and mode 755 with owner root:root.
Finally, your problem: You most likely have installed a amd64 system, that in its normal state is not able to execute 32bit ELF files, which you have installed. I don't know how to install a multiarch on a CentOS system (I only have bad experiences with RHEL), but that's what you need to do. And YES, No Such File is exactly the error you get when trying to execute a ELF32 binary from a 64bit system. Been there, done that.
that is why i did a manual install.
~Travis
Have you found out how to enable 32bit ELF binaries on your system?
~Travis
~Travis
~Travis
Depending on your setup most directories would be on your root partition. I found it helpful to use about 20 GB for /, 1 GB for /boot, 5-10 GB for SWAP and the rest put into /home, and every excess HDD into /srv (after a RAID5 and a LUKS layer has been implemented there - I don't work with less).
my system has 6 drives. first 2 are a RAID1 for the OS root, and the other 4 are a RAID5 for "/home". i don't generally use an encrypted layer, simply because of old habit. if something needs encryption, i encrypt it directly. not like i store any "national security" data. ;)
last time i used an encrypted file system, it made it nearly unusable when i had to move data (physical drives) to a newer server. maybe i am just "old fashioned", as that was back in the early days of encrypted filesystems, i think (late 90s to early 2K). maybe i just implemented it wrong.
in any case, i am still waiting for the game server download to complete, and will report back if the re-download worked.
~Travis
so i am getting closer, i think.
~Travis
RAID5 generally is better with a 2^n +1 disk setup (reasons being the XOR operation depth), but this is just performance optimization. The encryption layer is a no-brainer - cryptsetup luksFormat /dev/md1 and then decrypt it with cryptsetup luksOpen /dev/md1 md1_crypt, which you can then mount with mount /dev/mapper/md1_crypt /whereever/you/like. Apart from that you don't notice anything. Just don't make the misstake and put it as automount into /etc/fstab, for systemd will halt your system prior to sshd execution, leaving you in need for direct interaction.
It's basics for my apprentices ;)
~Travis
~Travis
~Travis