VSCODE 在 Linux 上对我不起作用
VSCODE does not work for me on Linux
刚了解 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
那时没有 window 出现,什么也没有发生,我只能做到 ^C 了。除了 运行 之外,我在说明中看不到我应该做的任何事情。还有其他人有这个问题吗?
[Arch Linux 4.0.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.
我也遇到了同样的情况。
在 Visual Studio Code 官方常见问题解答中,他们说他们知道这个问题。他们还没有解决方案:https://code.visualstudio.com/Docs/FAQ
我会继续查看该页面,随着时间的推移,他们很可能会在那里上传解决方案。
该项目可能有很多观察者。
我 运行 解决了这个问题:
# increasing the capacity of watchers
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
刚了解 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
那时没有 window 出现,什么也没有发生,我只能做到 ^C 了。除了 运行 之外,我在说明中看不到我应该做的任何事情。还有其他人有这个问题吗?
[Arch Linux 4.0.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.
我也遇到了同样的情况。
在 Visual Studio Code 官方常见问题解答中,他们说他们知道这个问题。他们还没有解决方案:https://code.visualstudio.com/Docs/FAQ
我会继续查看该页面,随着时间的推移,他们很可能会在那里上传解决方案。
该项目可能有很多观察者。 我 运行 解决了这个问题:
# increasing the capacity of watchers
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p