Ubuntu 16.04 LTS가 설치된 랩톱에 VS Code를 설치했습니다. 동일한 결과로 여러 설치 방법을 시도했습니다. 가장 최근에는 Cactux의 "new"지침을 따르고 있습니다 . 응용 프로그램을 두 가지 방법으로 열어 보았습니다.
- '응용 프로그램'에서 프로그램을 열면 아이콘이 약 15 초 동안 실행기에 표시되고 사라집니다. 오류가 나타나지 않습니다.
- 터미널을 열고 type을 입력
code
하면 명령이 아무 것도 수행하지 않고 1 초 안에 새 프롬프트가 표시됩니다.
Linux를 처음 접한 이후로 무엇을 시도해야하는지 고민하고 있습니다.
which code
yield /usr/bin/code
, 이것은 bash 스크립트입니다. 이곳은 내가 깊이 벗어난 곳입니다.
스크립트의 내용
/usr/bin$ cat code
#!/usr/bin/env bash
#
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# If root, ensure that --user-data-dir or --file-write is specified
if [ "$(id -u)" = "0" ]; then
for i in $@
do
if [[ $i == --user-data-dir || $i == --user-data-dir=* || $i == --file-write ]]; then
CAN_LAUNCH_AS_ROOT=1
fi
done
if [ -z $CAN_LAUNCH_AS_ROOT ]; then
echo "You are trying to start vscode as a super user which is not recommended. If you really want to, you must specify an alternate user data directory using the --user-data-dir argument." 1>&2
exit 1
fi
fi
if [ ! -L $0 ]; then
# if path is not a symlink, find relatively
VSCODE_PATH="$(dirname $0)/.."
else
if which readlink >/dev/null; then
# if readlink exists, follow the symlink and find relatively
VSCODE_PATH="$(dirname $(readlink -f $0))/.."
else
# else use the standard install location
VSCODE_PATH="/usr/share/code"
fi
fi
ELECTRON="$VSCODE_PATH/code"
CLI="$VSCODE_PATH/resources/app/out/cli.js"
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
exit $?
다른 디렉토리의 디버그 출력
~$ bash -x code
++ id -u
+ '[' 1000 = 0 ']'
+ '[' '!' -L code ']'
++ dirname code
+ VSCODE_PATH=./..
+ ELECTRON=./../code
+ CLI=./../resources/app/out/cli.js
+ ELECTRON_RUN_AS_NODE=1
+ ./../code ./../resources/app/out/cli.js
/usr/bin/code: line 35: ./../code: No such file or directory
+ exit 127
/usr/bin$ bash -x code
++ id -u
+ '[' 1000 = 0 ']'
+ '[' '!' -L code ']'
+ which readlink
+++ readlink -f code
++ dirname /usr/share/code/bin/code
+ VSCODE_PATH=/usr/share/code/bin/..
+ ELECTRON=/usr/share/code/bin/../code
+ CLI=/usr/share/code/bin/../resources/app/out/cli.js
+ ELECTRON_RUN_AS_NODE=1
+ /usr/share/code/bin/../code /usr/share/code/bin/../resources/app/out/cli.js
+ exit 0
PATH의 내용
~$ $PATH
bash: /home/adam/anaconda3/bin:/home/adam/anaconda3/bin:/home/adam/bin:/home/adam/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin: No such file or directory
도움이나 제안을 부탁드립니다.
sudo apt update
2)sudo apt upgrade
. 오류가 발생하면 오류를 해결하십시오. 그런 다음 터미널에서 apt를 실행하고 오류가 있는지 확인하십시오.