Questions tagged «software-installation»

在运行的系统上以二进制文件或源代码形式安装软件。

1
如何安装cpuminer?
我正在尝试根据本教程安装cpuminer 。本教程介绍了使用终端安装cpuminer。 sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm # clone cpuminer git clone https://github.com/pooler/cpuminer.git # compile cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make # choose a miner pool and register there # start the miner ./minerd --url=your.minerpool.org --user=username --pass=password 我已经安装了git并从git下载了`cpuminer。但是当尝试编译它时,出现此错误: user@user-Dell-Notebook-PC:~$ cd cpuminer user@user-Dell-Notebook-PC:~/cpuminer$ ./autogen.sh ./autogen.sh: 8: ./autogen.sh: aclocal: …

6
Google Earth未安装在14.04上
我正在尝试在Ubuntu 14.04上安装Google Earth,并收到以下错误。使用dpkg -i从Google网站安装.deb下载文件时出现问题,此外,我也在Ubuntu Software Center进行了测试。 这个站点中存在类似的问题,涉及安装问题,但是都不是在14.04上,因此我决定发布一个新问题,以寻求当前LTS Ubuntu版本的提示解决方案(这些问题中的大多数评论和建议都针对最早的Ubuntu)。版本) Preparing to unpack google-earth-stable_current_amd64.deb ... Unpacking google-earth-stable (7.1.2.2041-r0) ... dpkg: dependency problems prevent configuration of google-earth-stable: google-earth-stable depends on lsb-core (>= 3.2); however: Package lsb-core is not installed. google-earth-stable depends on ia32-libs; however: Package ia32-libs is not installed. dpkg: error processing package …

2
Ubuntu 14.04:无法安装nvidia驱动程序
我有一台带有nVidia卡的华硕笔记本电脑。lspci告诉我: 01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [GeForce 610M] (rev a1) 我重新安装了Ubuntu 14.04 LTS(64位版本)。 默认情况下,Ubuntu 14.04使用nouveau驱动程序,但是它们不能很好地工作(闪烁光标,慢速3D显示等),因此我想安装专有的nvidia驱动程序。 我进入系统设置>软件和更新>其他驱动程序。Ubuntu为我提出了以下选择: 无论我尝试选择什么(Nouveau除外),在单击“ APply更改”后,它都会还原为Nouveau,而没有任何其他反馈。 因此,我尝试使用apt手动安装驱动程序: $ sudo apt-get install nvidia-331 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested …


1
如何将处理添加到Unity启动器?
处理是一种开源语言和环境,用于学习电子艺术和计算机编程的基础知识。 它的Linux下载软件包包括一个名为的文件processing,运行该文件时,它将打开主Processing IDE。 如何在Ubuntu 13.10中将该程序添加到Unity启动器?

2
当Apt报告MariaDB具有未满足的依赖关系或损坏的软件包时安装MariaDB
我已经尽一切努力在干净的Ubuntu安装上安装MariaDB,但是我一直收到此错误, Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The …



3
如何安装jdownloader?
我想使用脚本进行安装 但问题是我不知道如何使用此方法进行安装。 试试我们新的Linux / Mac安装/启动脚本!wget必须安装在系统上!下载jd.sh chmod + x jd.sh启动jd.sh注意:打开jd.sh阅读手册或更改设置! 请教我并给我详细信息以安装jdownloader。

6
配置ffmpeg时出现“未知选项” --enable-libfaad“错误:找不到libfaac”
我尝试按照以下说明进行安装: sudo apt-get remove ffmpeg x264 libx264-dev sudo apt-get update sudo apt-get install build-essential subversion git-core checkinstall yasm texi2html libfaac-dev libfaad-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libx11-dev libxfixes-dev libxvidcore4-dev zlib1g-dev cd mkdir ffmpeg-x264-avfilter cd ffmpeg-x264-avfilter git clone git://git.videolan.org/x264.git cd x264 ./configure make sudo checkinstall --pkgname=x264 --pkgversion "1:0.svn`date +%Y%m%d`+`git rev-list HEAD -n …



10
技巧安装程序以压缩使用btrfs root
我想将Maverick安装到BTRFS根分区上。并不是为了娱乐或测试,而是因为我需要压缩的闪存盘(4GB)。 现在,10.10安装程序终于支持btrfs,但是无法在其中启用该compress标志。我可以以某种方式欺骗安装程序吗?对于旧版本并获得LUKS,您可以预先安装分区。还是有一个简单的猴子补丁可以启用btrfs + compress预安装?

3
在Ubuntu 16.10上安装Cisco Packet Tracer 7
我是Linux新手。尝试在Ubuntu 16.10上安装Packet Tracer 7失败。基本上从Ubuntu先前的答案中尝试了两种不同的方法:方法一: 如何运行Cisco Packet Tracer 6.0.1? 重新下载适用于Ubuntu的Cisco Packet Tracer 6.0。 打开下载文件夹,重命名为CiscoPacketTracer6.0。 打开终端(Ctrl+ Alt+ t)。 输入: sudo su 并输入密码,然后按 Enter 然后输入: cd Downloads ls chmod +x CiscoPacketTracer6.0 ./CiscoPacketTracer6.0 我在这里遇到错误:cannot execute binary file: Exec format error。 方法二: 从第二个答案上方的同一链接:基本上是相同的方法,不同之处在于: sudo chmod a+x PT601.tar.gz bash ./PT601.tar.gz 再次陷入错误: cannot execute binary file 然后再次搜索,发现可能是64/32位错误,因此我从netacad下载了32位版本,然后再次尝试第一种方法,并得到了相同的错误:cannot …

2
如何安装.so文件?-新手
我下载了freeverb.tar.gz,其中包含用于Audacity的插件库(freeverb.so)。 我将.tar.gz文件解压缩到我的下载文件夹中,但是我不知道下一步该怎么做。.tar.gz文件中没有自述文件或任何其他信息,只有freeverb.so 您能建议我如何将freeverb.so安装到正确的文件夹中,以便Audacity进行下载吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.