我按照以下步骤在我的Debian中安装GHDL编译器,但是现在我需要卸载这个编译器来安装x64版本,但我不能。
By downloading the binaries and unpacking them manually:
$ wget http://ghdl.free.fr/site/uploads/Main/ghdl-i686-linux-latest.tar
$ sudo tar xvf ghdl-i686-linux-latest.tar
(这将生成文件ghdl-0.29-i 686-pc-linux.tar.bz 2)
$ cd ghdl-0.29-i686-pc-lin
我今天早上想升级这个未安装程序包。在我犯了这个错误之前一切都很顺利。
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
libc6 : Breaks: libc6:i386 (!= 2.17-0ubuntu5) but 2
我用linux bash编写了一个简单的脚本,就像下面这样:
#!/bin/bash
PATH=/tmp_with_zip_files
FILETYPE=zip
i=1
for filename in $PATH/*.$FILETYPE;
do
echo "rm $filename";
if [ -f $filename ];
then rm $filename;
fi
i=$((i+1))
done
echo "$i files removed"
但是,当
我想遵循这个关于V4L2的驱动程序编写的。
但是当我包含media/v4l2-dev.h (因为我想访问像VFL_TYPE_GRABBER这样的宏)时,我的第一次基本尝试失败了。
media/v4l2-dev.h包括linux/device.h,其中包括linux/iport.h,它会崩溃,并显示以下输出:
In file included from /usr/src/linux/include/linux/device.h:16,
from /usr/src/linux/include/media/v4l2-dev.h:14,
我的包管理(apt)有一个大问题。我试图安装multiscan:i386包,从那时起,当我使用处理包管理的命令时总是会出现错误。
我不知道这是否重要,但我有一个i7-4720HQ,Ubuntu17.10.1,64位架构,我通常正在安装amd64软件包。
me@LINUX:~$ sudo apt remove multiscan
[sudo] password for me:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following
我尝试通过今天出现的更新通知从Ubuntu15.04升级到15.10,但是在运行dpkg --configure时它被卡住了。以下是最后一条消息:
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.2.0-18-generic
Found initrd image: /boot/initr
我想通过Visual代码测试,但我遇到了一个问题。
在我的VM (CentOS 8)上,我用很少的应用程序建立了早期工作的Apache。因此,他们正在与Laravel Mix合作。
现在,当Vite出现时,我试图“主持”这些项目,但是npm run dev没有工作。
Node version: v10.23.1
npm version: 6.14.10
当我尝试运行npm run dev或npm run build时出错
[user@server ssh-test-app]$ npm run dev
> @ dev /var/www/ssh-test-app
> vite
/
我想移除Ruby,所以我试试这个。我怎么才能把这个移除?
sudo apt-get autoremove ruby
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'ruby' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 534 not upgraded.
here@jaskaran:/$ whereis
升级到Ubuntu16.04后,我无法更新我的系统。在通常情况下:
apt-get upgrade
我知道这个错误:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation
在设置Git Server (在最新的Debian上)时,我已经将git用户外壳设置为"git- shell“(...:/home/git:/usr/bin/git-shell),并期望在ssh连接到git@xxx.xxx时得到如下响应:
fatal: What do you think I am? A shell?
Connection to gitserver closed.
相反,实际的响应是:
$ ssh git@xxx.xxx.xxx.xxx
Linux Debian-70-wheezy-32-minimal 3.2.0-4-686-pae #1 SMP Debian 3.2
我必须在子目录中安装一些.deb包,即/opt/corbos-linux/2.4.4/sysroots/x86_64-pokysdk-linux/。此文件夹应用作新的根目录。我试着安装这些软件包
dpkg --root=/opt/corbos-linux/2.4.4/sysroots/x86_64-pokysdk-linux/ -i *.deb
但是这个错误出现了:
dpkg: error: unable to access dpkg status area: No such file or directory
而如果我给
dpkg --instdir=/opt/corbos-linux/2.