我尝试在 ubuntu 22.04.4 LTS 上从 crontab 启动 R 脚本,但脚本没有启动我的代码(由 nano crontab -e 编辑)给出 50 9 * * * Rscript 1.rcrontab 在没有 nano crontab -egivesno 的情况下编辑
我尝试在 ubuntu 22.04.4 LTS 上从 crontab 启动 R 脚本,但脚本没有启动
我的代码(由 nano crontab -e
)
给出
50 9 * * * Rscript 1.r
crontab 在没有 nano 的情况下编辑 crontab -e
给出
no crontab for root
crontab -l
也没有为 root 提供 crontab
我该如何解决这个问题?
我在 Ubuntu 上构建了 Bevy,但是当我尝试运行 target/release 文件夹中的可执行文件时,它会记录以下错误:./BevyPractice:加载共享库时出错:libbevy_dylib-
我在 Ubuntu 上构建了 Bevy,但是当我尝试运行 target/release 文件夹中的可执行文件时,它记录以下错误:
./BevyPractice: error while loading shared libraries: libbevy_dylib-f672a45218b83a74.so: cannot open shared object file: No such file or directory
我的构建发布的命令是: cargo build --release
我搜索了一下,有人说我需要 dynamic linking
在发布版本中删除。但我找不到明确的方法来做到这一点。
这是我的 config.toml
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = [
"-Clink-arg=-fuse-ld=lld",
]
[target.x86_64-apple-darwin]
rustflags = [
]
[target.aarch64-apple-darwin]
rustflags = [
]
[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
rustflags = [
]
[alias]
ci = "run --package ci --"
以下是 cargo.toml
项目
[package]
name = "BevyPractice"
version = "0.1.1"
edition = "2021"
[dependencies]
bevy = { version = "0.14" }
mo_editor = { path = "crates/mo_editor" }
mo_std = { path = "crates/mo_std" }
[workspace]
members = ["crates/*"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
我只是想测试从创建到编码以及最终构建并将可执行文件发送给其他人的工作流程。