Jetson上设置VNC访问

设置VNC服务器 VNC服务器在Jetson上已经安装,需要开启并设置密码 mkdir -p ~/.config/autostart cp /usr/share/applications/vino-server.desktop ~/.config/autostart/. gsettings set org.gnome.Vino prompt-enabled false gsettings set org.gnome.Vino require-encryption false # Replace thepassword with your desired password gsettings set org.gnome.Vino authentication-methods “[‘vnc’]” gsettings set org.gnome.Vino vnc-password $(echo -n ‘thepassword’|base64) sudo reboot 在Windows上远程访问 Windows机器要与Jetson在同一个局域网里。在VNC客户端输入Jetson的IP,会要求输入密码。 参考 nvidia Jetson setup VNC

在Visual Studio中使用NuGet安装包

小结 在Visual Studio里找不到包,需要使用NuGet来进行安装,两种办法:使用命令行和使用菜单安装。 问题 找不到System.Reactive包。 找不到Microsoft.ReportViewer的包 解决 Tools → NuGet Package Manager → Package Manager Console. 使用Install-Package System.Reactive来安装。 Tools → NuGet Package Manager → Manage NuGet Packages for Solutions… 搜索Microsoft.ReportViewer.Runtime.Common进行安装。 参考 C# .NET Rx- Where is System.Reactive? Microsoft.ReportViewer.Common.v12 Quickstart: Install and use a package in Visual Studio (Windows only)

VS Code整合.net与F#

小结 安装VS Code并安装F#和C#开发环境,达到可以调试代码的目的。 .net安装 安装 dotnet-sdk-6.0,验证dotnet指令可以运行。 验证创建应用 dotnet new console -o MyApp -f net6.0 cd MyApp dotnet run 以上打印Hello, World! F#安装 安装FAKE dotnet tool install fake-cli VS Code扩展 安装VS Code并安装以下几个扩展 – Ionide for F# – .NET Extension Pack – C# for Visual Studio Code 参考 .NET Tutorial – Hello World in 5 minutes Download .NET […]

The Application Failed to Start Because Side-By-Side Configuration Is Incorrect Error – Unresolved

Recently encountered error ‘The Application Failed to Start Because Side-By-Side Configuration Is Incorrect’, it was showing as below, tried to install Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package MFC Security Update as suggested, still cannot resolve, I mark this error as unresolved. Press the Windows KEY + S and type in event viewer […]