如何在Linux Mint中将Google添加到Firefox中作为默认搜索引擎

In Firefox on Linux Mint, Google is not in the default list of search engines. Linux Mint has its criteria for adding search engines while Google seems not in those suggested by Linux Mint because “Amongst commercial search engines, only the ones which share with Linux Mint the revenue Linux Mint users generate for them are included by default” while Google seems not share revenue with Linux Mint. Linux Mint states “eventually all search engines will share the revenue our users generate for them and be included by default in Linux Mint” while it is not true yet. Google is the choice of many Linux users and Linux Mint does not block Google in its distributions of the Firefox. How to add Google in Firefox on Linux Mint is introduced in this post.

Linux Mint上的Firefox中, Google不在搜索引擎的默认列表中。 Linux Mint有添加搜索引擎的标准,而Google似乎没有Linux Mint建议的标准,因为“默认情况下,包括在商业搜索引擎中,只有与Linux Mint共享Linux Mint用户为其产生的收入的那些搜索引擎”。不与Linux Mint分享收益。 Linux Mint指出“最终,所有搜索引擎将分享用户为他们创造的收入,并默认包含在Linux Mint中”,但事实并非如此。 Google是许多Linux用户的选择,Linux Mint不会阻止Google发行Firefox。 这篇文章介绍了如何在Linux Mint上的Firefox中添加Google。

First, in Firefox, visit Linux Mint Search Engines page.

首先,在Firefox中,访问Linux Mint搜索引擎页面。

Second, find the tiny Google icon and click the link.

其次,找到微小的Google图标,然后单击链接。

linux-mint-firefox-search-engine-google-1.png

Last, in the search toolbar of Firefox, you will see a small green “+” icon. Click the icon, click “Add Google”, and then you can add Google to your search engine list in Firefox now.

最后,在Firefox的搜索工具栏中,您将看到一个绿色的小“ +”图标。 单击图标,单击“添加Google”,然后您可以立即将Google添加到Firefox中的搜索引擎列表中。

linux-mint-firefox-search-engine-google-add.png

You may choose Google as the default search engine too in Firefox by opening the following page in Firefox.

您也可以通过在Firefox中打开以下页面来选择Google作为Firefox中的默认搜索引擎。

about:preferences#search
firefox-default-search-engine.png

Now, Google is back for you in Firefox on Linux Mint. Cheers!

现在,在Linux Mint上的Firefox中,Google再次为您服务。 干杯!

翻译自: https://www.systutorials.com/how-to-add-google-to-firefox-in-linux-mint-as-default-search-engine/

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 要安装Linux Mint系统并编辑、编译和调试程序,首先要下载安装Linux Mint系统,然后安装必要的编辑器,如Vim、Emacs等,以及编译器,如gcc、g++等。然后可以使用编辑器编辑源代码,使用编译器编译源程序,最后利用调试器调试程序,以获得最终运行结果。 ### 回答2: 安装Linux Mint系统是一项相对简单的任务,以下是安装步骤: 1. 下载Linux Mint的安装镜像文件,通常是一个ISO文件。 2. 制作安装介质,可以是刻录成光盘或者制作成USB启动盘。 3. 将安装介质插入电脑并重启计算机。 4. 进入计算机的BIOS设置,将启动顺序调整为先从光盘或者USB启动盘启动。 5. 重启计算机,按照提示选择安装Linux Mint系统。 6. 在安装过程,选择适当的语言和时区,设置用户名和密码等信息。 7. 选择安装方式,可以选择与其他操作系统共存,或者覆盖原有系统。 8. 等待安装完成,重启计算机。 安装完成后,在Linux Mint系统可以使用自带的文本编辑器(如gedit)来编辑、编译和调试程序。下面是一个简单的例子,以C语言为例: 1. 打开终端,输入以下命令来安装gcc编译器: ``` sudo apt-get install build-essential ``` 2. 创建一个新的C语言源文件,比如hello.c,例如使用gedit编辑器: ``` gedit hello.c ``` 3. 在打开的文本编辑器窗口,输入以下代码: ```c #include <stdio.h> int main() { printf("Hello, World!\n"); return 0; } ``` 4. 保存文件并关闭文本编辑器。 5. 在终端使用gcc编译器编译源代码并生成可执行文件,比如使用以下命令: ``` gcc -o hello hello.c ``` 6. 运行生成的可执行文件,例如使用以下命令: ``` ./hello ``` 7. 在终端会显示输出结果,即 "Hello, World!"。 这样,你就成功编辑、编译和调试了一个简单的C语言程序。 ### 回答3: 安装Linux Mint系统是一个比较简单的过程。首先,你需要准备一个空的USB闪存驱动器或者光盘,并下载最新的Linux Mint.iso镜像文件。然后,根据你的设备选择UEFI或者Legacy模式来引导系统。接下来,按照屏幕上的指示进行安装。在分区的过程,你可以选择删除旧的操作系统,或者将Linux Mint安装在另一个分区。 安装完毕后,你可以使用自带的文本编辑器如gedit、nano或者vim来编辑编译和调试程序。Linux Mint系统已经预装了许多常用的开发工具,如GCC编译器。你可以在终端运行以下命令来确认GCC是否已经安装: gcc -v 如果GCC未安装,你可以运行以下命令来安装它: sudo apt-get install build-essential 编辑程序可以使用任何文本编辑器,如gedit。你可以使用以下命令在终端打开gedit: gedit 然后,在gedit编写你的程序代码,并保存文件。假设你保存的文件名为example.c。 调试程序可以使用GNU Debugger(GDB)来进行。GDB是一个非常强大的调试工具,可以帮助你检测和修复程序的错误。你可以使用以下命令安装GDB: sudo apt-get install gdb 运行GDB调试器的命令如下: gdb ./example 这会将GDB加载到你的程序。你可以使用GDB提供的命令来设置断点、单步执行、查看变量值等等。 总的来说,安装Linux Mint系统并在其编辑编译和调试程序是一个简单的过程。你只需要按照指导进行安装,然后使用终端和相应的工具就可以轻松完成这些任务。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值