从 10.04 升级到 12.04 后,我尝试安装不同的软件包。例如 ia32-libs 和 Skype (4.0)。
尝试安装这些时,我收到“无法纠正问题,您保存了损坏的软件包”错误消息。
命令的输出:
sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Run Code Online (Sandbox Code Playgroud)
运行后:
sudo dpkg --configure -a
foo@foo:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Run Code Online (Sandbox Code Playgroud) 第一次尝试运行 Ubuntu 服务器......但一切都在终端中。有没有办法切换到GUI?
我是 Linux 新手,需要在 VirtualBox 的 Xubuntu 14.04 上安装 Wireshark 2.0.0。我已经下载了 .tar.gz 包并解压了它。然后我在wireshark文件夹中打开终端并键入/.configure意图通过 make 和sudo make installexecutions跟随它,但尝试与sudo apt-get install wireshark. 有人可以帮我逐步安装Wireshark吗?
我正在尝试制作一个 rtsp 服务器,它可以从 onvif 相机捕获 rtsp 提要,然后将此流重新分发给连接到我的服务器的每个人。
我使用这个iso在VMware Workstation上创建了一个新的Ubuntu 64位虚拟机:https : //www.ubuntu.com/download/desktop/thank-you? version = 18.04.1 & architecture =amd64
然后我安装了 ubuntu-desktop:
$ sudo apt-get update
$ sudo apt-get install ubuntu-desktop
$ reboot
Run Code Online (Sandbox Code Playgroud)
我将 gst-rtsp-server 从其 github 存储库克隆到我桌面上的一个文件夹中:
$ cd Desktop
$ mkdir camSrv
$ cd camSrv
$ git clone https://github.com/GStreamer/gst-rtsp-server.git
Run Code Online (Sandbox Code Playgroud)
然后我安装了这篇文章引用的依赖项:
$ sudo apt-get install autoconf -y
$ sudo apt-get install automake -y
$ sudo apt-get install autopoint -y
$ sudo apt-get install libtool -y
Run Code Online (Sandbox Code Playgroud)
但是当我尝试构建 gst-rtsp-server 项目时,我不断收到错误... …