-
Notifications
You must be signed in to change notification settings - Fork 23
树莓派4b装系统到运行 Blazor Linux 本地程序全记录
在Linux下运行gui程序,咱也是第一次做,属于是瞎子过河乱摸一通,写得有什么不对和可以优化的地方,希望各位看官斧正斧正.
https://www.raspberrypi.com/software/
sudo passwd root
reboot
http://www.lcdwiki.com/zh/MHS-3.5inch_RPi_Display
买的是某宝的带盒子的小屏幕 LCD接口:SPI(Fmax32 MHz) 分辨率:320 * 480(Pixel)
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show
cd LCD-show/
sudo ./MHS35-show
LCD驱动安装完成后,系统会自动重启。启动成功后,LCD可以正常显示和触摸就说明驱动安装成功了
执行完毕之后,系统会自动重启,然后显示屏就可以旋转90度正常显示和触摸 (' 90 '也可以改为0,90,180,270等数值,分别代表旋转角度0度,90度,180度,270度)
cd LCD-show/
sudo ./rotate.sh 180
命令提示符里面输入
ping raspberrypi.local
或者
arp -a
在终端输入以下命令进入配置界面。
sudo raspi-config
依次操作:Interfacing Options -> VNC -> Yes。之后系统会提示你是否要安装 VNC 服务,输入 y 之后回车,等待系统自动下载安装完成,一切顺利的话 VNC 服务就启动了!
sudo apt-get install tightvncserver
sudo apt-get install xrdp
sudo ufw allow 3389
sudo service ufw restart
sudo service xrdp restart
这样就可以用window自带远程桌面进入了
宝塔直接可以拖文件进去,省的要ftp啥的.
su
wget -O install.sh https://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh ed8484bec
例如 Raspberry Pi 上的 Raspbian, 发布后压缩为zip文件
dotnet publish -r linux-arm64 -f net7.0 -c Release --self-contained /p:PublishSingleFile=true
解压
由于测试用的是Sypider,参考一下需要环境 WebKit2GTK
apt list --installed | grep webkit2gtk
#深度OS
#sudo apt install -y libwebkit2gtk-4.0-dev
需要把执行文件权限改为可运行
cd /www/BlazorHybrid.Linux
chmod +x ./BlazorHybrid.Linux
./BlazorHybrid.Linux
在/usr/share/applications
新建文件 BlazorHybrid.Linux.desktop
[Desktop Entry]
Type=Application
Version=0.0.1
Name=BlazorHybrid.Linux
Exec=/www/BlazorHybrid.Linux/BlazorHybrid.Linux
Terminal=false
Icon=computer
Path=/www/BlazorHybrid.Linux
Name[en_GB]=BlazorHybrid.Linux
GenericName=DEMO
Comment[en_GB]=my demo
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x ./dotnet-install.sh
#./dotnet-install.sh --version latest
./dotnet-install.sh --channel 7.0
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools
dotnet --info
wsl安装图形环境
https://learn.microsoft.com/zh-cn/windows/wsl/tutorials/gui-apps
安装图形环境
https://linuxstory.org/how-to-install-default-ubuntu-22-04s-desktop-environment/zh-tw/
Ubuntu的root账户登录图形界面失败的问题