hw-1

Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore

Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore

1
2
#add 2>/dev/null follow xcodebuild
xcodebuild -showsdks 2>/dev/null

OSError: /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6: version GLIBCXX_3.4.29 not found (required by /home/ubuntu/anaconda3/lib/python3.8/site-packages/tensorflow/python/platform/../../core/platform/_cpu_feature_guard.so)

OSError: /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6: version GLIBCXX_3.4.29 not found (required by /home/ubuntu/anaconda3/lib/python3.8/site-packages/tensorflow/python/platform/../../core/platform/_cpu_feature_guard.so)

1
2
3
4
sudo rm -rf /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6
sudo cp /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 /home/ubuntu/anaconda3/bin/../lib
ln -s /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6.0.30 /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6
strings /home/ubuntu/anaconda3/bin/../lib/libstdc++.so.6 | grep GLIBCXX_3.4.29

userauth_pubkey: key type ssh-rsa not in PubkeyAcceptedAlgorithms [preauth]

userauth_pubkey: key type ssh-rsa not in PubkeyAcceptedAlgorithms [preauth]

OpenSSH 7.0 以上已经默认关闭了 ssh-rsa 了,我们看一下我们的 ssh 版本:

1
2
3
4
5
6
7
8
9
10
11
12
13
ssh -V
sudo vim /etc/ssh/sshd_config
PubkeyAuthentication yes
PubkeyAcceptedKeyTypes=+ssh-rsa
sudo service sshd restart

ssh -Q key
ssh -Q PubkeyAcceptedAlgorithms | grep rsa
ssh -G user@somehost.example.com

LogLevel INFO
loglevel QUIET
tail -f /var/log/auth.log