3

刚刚了解了 VSCODE,很高兴尝试一下。我下载、解压缩并运行可执行文件。我得到:

$ Code
[2183:0429/201254:ERROR:browser_main_loop.cc(170)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
bash: .bashrc: No such file or directory
^C

那时没有窗口出现,没有任何反应,我能做的就是^C了。除了运行它之外,我在指令中看不到任何我应该做的事情。其他人有这个问题吗?

[Arch Linux 4.0.1]

4

3 回答 3

1

对于 Arch Linux,AUR 中提供了一个软件包。https://aur.archlinux.org/packages/visual-studio-code/

这个 AUR 包有

alsa-lib
cairo
fontconfig
gcc-libs
gconf
gtk2
libxtst
nss
python

作为它的依赖。从包管理器安装这些依赖项应该可以解决问题。我试图通过删除软件包来复制错误,但没有成功。

我也收到了错误消息的第一部分。由于编辑器按预期启动,因此似乎可以忽略它。

[7190:0501/233446:ERROR:browser_main_loop.cc(170)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
于 2015-04-30T10:50:46.900 回答
0

同样发生在我身上。
在他们声明的 Visual Studio Code 官方常见问题解答中,他们意识到了这个问题。他们还没有解决方案:https
://code.visualstudio.com/Docs/FAQ 我会继续检查那个页面,随着时间的推移,他们很可能会在那里上传解决方案。

于 2015-06-14T18:05:50.830 回答
0

该项目可能有很多观察者。我运行这个并解决这个问题:

# increasing the capacity of watchers

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
于 2015-08-13T19:28:55.637 回答