当前位置:   article > 正文

未解决:unbuntu,centos,redhat 怎样使用软件源下载mysql?

rsyslog - reliable system and kernel logging daemon

1.unbuntu怎样使用软件源下载mysql?

2.如何查看unbuntu有哪些软件源?

3.sources.list在镜像地址右边的参数 trusty-updates universe 是什么意思?

4.为什么 ubuntu打开网站后,只发现2个gz的包呢?而不是由很多mysql软件,ftp软件呢?

 

 


 

1.unbuntu怎样使用软件源下载mysql?

使用文字方式配置 

不同版本的unbuntu,图形界面是不一样的,然而文字代码基本相同

先备份软件源

sudo cp /etc/apt/sources.list /etc/apt/sources.list.b20151015

修改软件源文件中的镜像地址

sudo gedit /etc/apt/source.list 

ubuntu的vi很不好用,使用gedit好了,这个直接等效于windows的txt,图形界面,能用鼠标操作的

 

 直接使用ftp工具把sources.list拷贝出来是这样子的

  1. #deb cdrom:[Ubuntu-Kylin 14.04.2 LTS _Trusty Tahr_ - Release i386 (20150218.1)]/ trusty main multiverse restricted universe
  2. # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
  3. # newer versions of the distribution.
  4. deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
  5. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
  6. ## Major bug fix updates produced after the final release of the
  7. ## distribution.
  8. deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
  9. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
  10. ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
  11. ## team. Also, please note that software in universe WILL NOT receive any
  12. ## review or updates from the Ubuntu security team.
  13. deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
  14. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe
  15. deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
  16. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
  17. ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
  18. ## team, and may not be under a free licence. Please satisfy yourself as to
  19. ## your rights to use the software. Also, please note that software in
  20. ## multiverse WILL NOT receive any review or updates from the Ubuntu
  21. ## security team.
  22. deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
  23. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
  24. deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
  25. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
  26. ## N.B. software from this repository may not have been tested as
  27. ## extensively as that contained in the main release, although it includes
  28. ## newer versions of some applications which may provide useful features.
  29. ## Also, please note that software in backports WILL NOT receive any review
  30. ## or updates from the Ubuntu security team.
  31. deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
  32. deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
  33. deb http://security.ubuntu.com/ubuntu trusty-security main restricted
  34. deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
  35. deb http://security.ubuntu.com/ubuntu trusty-security universe
  36. deb-src http://security.ubuntu.com/ubuntu trusty-security universe
  37. deb http://security.ubuntu.com/ubuntu trusty-security multiverse
  38. deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse
  39. ## Uncomment the following two lines to add software from Canonical's
  40. ## 'partner' repository.
  41. ## This software is not part of Ubuntu, but is offered by Canonical and the
  42. ## respective vendors as a service to Ubuntu users.
  43. # deb http://archive.canonical.com/ubuntu trusty partner
  44. # deb-src http://archive.canonical.com/ubuntu trusty partner
  45. ## Uncomment the following two lines to add software from Ubuntu's
  46. ## 'extras' repository.
  47. ## This software is not part of Ubuntu, but is offered by third-party
  48. ## developers who want to ship their latest software.
  49. # deb http://extras.ubuntu.com/ubuntu trusty main
  50. # deb-src http://extras.ubuntu.com/ubuntu trusty main

  

  

不同版本的unbuntu,软件源的名字是不同的,选择匹配的镜像地址

上面的# deb-src http://extras.ubuntu.com/ubuntu trusty main中的trusty是镜像的版本

 一共有如下这些版本号

  1. Hardy(8.04)
  2. Intrepid(8.10)
  3. Jaunty(9.04)
  4. Karmic(9.10)
  5. Lucid(10.04)
  6. Maverick(10.10)
  7. Natty(11.04)
  8. Oneiric(11.10)
  9. Precise(12.04)
  10. Quantal(12.10)
  11. Raring Ringtail(13.04)
  12. Saucy Salamander(13.10)
  13. Trusty Tahr(14.04)
  14. Utopic Unicorn(14.10)

  

查看unbuntu版本:uname -a ,得到为14

unbuntu中文官网提供软件源

官方中文说明书:http://wiki.ubuntu.org.cn/源列表 

 

注意要选择与自己系统匹配的版本

  1. 源列表
  2. 3.1 Vivid(15.04)版本
  3. 3.2 Utopic(14.10)版本
  4. 3.3 Trusty(14.04)版本
  5. 3.4 Precise(12.04)版本
  6. 3.5 Lucid(10.04) 版本
  7. 3.6 停止维护的版本

  

 

 

把这些镜像地址贴上去以后,得刷新列表,就像mysql的 flush privileges一样

sudo apt-get update

  

 

打开 http://mirrors.163.com/ubuntu/地址,如下

 

 点开一个dists的目录,这个目录是2015年10月15日更新的,看来是有维护的

 

点开以后看到几个大的分类,devel,lucid,precise,trusty,wily,vivid

其实这个就是上面的镜像版本号,适用不同的ubuntu,难怪官网提示如果是版本14,要把vivid替换成trusty

不过里面并没有utopic这个版本,估计会出错的

点开trusty-backports这个目录,如下图

 

3.sources.list在镜像地址右边的参数 trusty-updates universe 是什么意思?

刚好就是上面配置的几个参数,main multiverse restricted universe了

 

1.查看机器安装了mysql没有

dpkg里面d指的是Debian,ubuntu跟Debian是一伙的,pkg的方式,就是centos的rpm方式

当然还有apt-get的方式

第一种方式,dpkg --search mysql,作用是为了查询mysql这个文件属于哪些软件包,搜索出来一大堆不是我想要的

第二种方式,/var/lib/dpkg/available 记录所有已经安装的软件,或者未安装的软件

cat /var/lib/dpkg/available | grep mysql

第三种方式,使用一个软件包管理工具,aptitude

  1. unbuntu@ubuntu:~/Desktop$ sudo apt-cache search aptitude
  2. aptitude - terminal-based package manager
  3. aptitude-common - architecture indepedent files for the aptitude package manager
  4. aptitude-dbg - Debug symbols for the aptitude package manager
  5. aptitude-doc-en - English manual for aptitude, a terminal-based package manager
  6. libcwidget-dev - high-level terminal interface library for C++ (development files)
  7. apt-cacher - Caching proxy for Debian package and source files
  8. apticron - Simple tool to mail about pending package updates
  9. aptitude-doc-cs - Czech manual for aptitude, a terminal-based package manager
  10. aptitude-doc-es - Spanish manual for aptitude, a terminal-based package manager
  11. aptitude-doc-fi - Finnish manual for aptitude, a terminal-based package manager
  12. aptitude-doc-fr - French manual for aptitude, a terminal-based package manager
  13. aptitude-doc-it - Italian manual for aptitude, a terminal-based package manager
  14. aptitude-doc-ja - Japanese manual for aptitude, a terminal-based package manager
  15. aptitude-robot - Automate package choice management
  16. cron-apt - automatic update of packages using apt-get
  17. cupt - alternative front-end for dpkg -- console interface
  18. gbrainy - brain teaser game and trainer to have fun and to keep your brain trained
  19. pkgsync - automated package list synchronization
  20. wajig - unified package management front-end for Debian

安装这个aptitude软件

sudo apt-get install aptitude  

这个aptitude做得比apt-get效果更好,它可以查看一个软件的详细信息  aptitude show 软件包

 

它应该是以grep的方式搜索软件包的,所以不一定要打完整个名字,它会自动匹配的

 

2.接着我们要查询,软件管家有什么软件可以让我们下载

apt-cache search mysql

找到与mysql相关的很多软件

  1. bacula-common-mysql - network backup service - MySQL common files
  2. bacula-common-mysql-dbg - network backup service - MySQL common files (debugging)
  3. bacula-director-mysql - network backup service - MySQL storage for Director
  4. bacula-director-mysql-dbg - network backup service - MySQL storage for Director (debugging)
  5. bacula-sd-mysql - network backup service - MySQL SD tools
  6. bacula-sd-mysql-dbg - network backup service - MySQL SD tools (debugging)
  7. dbconfig-common - common framework for packaging database applications
  8. exim4-daemon-heavy - Exim MTA (v4) daemon with extended features, including exiscan-acl
  9. libapache2-mod-auth-mysql - Apache 2 module for MySQL authentication
  10. libdatetime-format-mysql-perl - Parse and format MySQL dates and times
  11. libdbd-mysql - MySQL database server driver for libdbi
  12. libdbd-mysql-perl - Perl5 database interface to the MySQL database
  13. libdbd-sqlite3-perl - Perl DBI driver with a self-contained RDBMS
  14. libdbi-perl - Perl Database Interface (DBI)
  15. libmysqlclient-dev - MySQL database development files
  16. libmysqlclient18 - MySQL database client library
  17. libmysqlcppconn-dev - MySQL Connector for C++ (development files)
  18. libmysqlcppconn7 - MySQL Connector for C++ (library)
  19. libmysqld-dev - MySQL embedded database development files
  20. libqt4-sql-mysql - Qt 4 MySQL database driver
  21. librdf0 - Redland Resource Description Framework (RDF) library
  22. libreoffice-base-drivers - Database connectvity drivers for LibreOffice
  23. libsasl2-modules-sql - Cyrus SASL - pluggable authentication modules (SQL)
  24. mysql-client - MySQL database client (metapackage depending on the latest version)
  25. mysql-client-5.5 - MySQL database client binaries
  26. mysql-client-core-5.5 - MySQL database core client binaries
  27. mysql-common - MySQL database common files, e.g. /etc/mysql/my.cnf
  28. mysql-server - MySQL database server (metapackage depending on the latest version)
  29. mysql-server-5.5 - MySQL database server binaries and system database setup
  30. mysql-server-core-5.5 - MySQL database server binaries
  31. nagios-plugins-standard - Plugins for nagios compatible monitoring systems
  32. nova-api - OpenStack Compute - API frontend
  33. nova-cert - OpenStack Compute - certificate management
  34. nova-common - OpenStack Compute - common files
  35. nova-compute - OpenStack Compute - compute node base
  36. nova-compute-kvm - OpenStack Compute - compute node (KVM)
  37. nova-compute-libvirt - OpenStack Compute - compute node libvirt support
  38. nova-compute-lxc - OpenStack Compute - compute node (LXC)
  39. nova-doc - OpenStack Compute - documentation
  40. nova-network - OpenStack Compute - Network manager
  41. nova-objectstore - OpenStack Compute - object store
  42. nova-scheduler - OpenStack Compute - virtual machine scheduler
  43. nova-volume - OpenStack Compute - storage
  44. php5-mysql - MySQL module for php5
  45. php5-sqlite - SQLite module for php5
  46. postfix-mysql - MySQL map support for Postfix
  47. python-logilab-common - useful miscellaneous modules used by Logilab projects
  48. python-migrate - Database schema migration for SQLAlchemy
  49. python-mysqldb - Python interface to MySQL
  50. python-mysqldb-dbg - Python interface to MySQL (debug extension)
  51. python-nova - OpenStack Compute Python libraries
  52. python3-logilab-common - useful miscellaneous modules used by Logilab projects (Python3)
  53. rsyslog - reliable system and kernel logging daemon
  54. strongswan-plugin-mysql - strongSwan plugin for MySQL
  55. strongswan-plugin-sql - strongSwan plugin for SQL configuration and credentials
  56. mythtv-database - Personal video recorder application (database)
  57. akonadi-backend-mysql - MySQL storage backend for Akonadi
  58. ampache - web-based audio file management system
  59. ampache-common - web-based audio file management system common files
  60. ampache-themes - Themes for Ampache
  61. aolserver4-nsmysql - AOLserver 4 module: module for accessing MySQL databases
  62. asterisk-mysql - MySQL database protocol support for the Asterisk PBX
  63. audiolink - makes managing and searching for music easier
  64. auth2db - Powerful and eye-candy IDS logger, log viewer and alert generator
  65. auth2db-common - Common configuration files for Auth2db backend and web frontend
  66. auth2db-filters - Auth2db defaults filters pack
  67. auth2db-frontend - Web frontend view for auth2DB log engine
  68. automysqlbackup - daily, weekly and monthly backup for your MySQL database
  69. autopostgresqlbackup - Automated tool to make periodic backups of PostgreSQL databases
  70. backup-manager - command-line backup tool
  71. backupninja - lightweight, extensible meta-backup system
  72. bibus - bibliographic database
  73. cacti - web interface for graphing of monitoring systems
  74. cedar-backup2 - local and remote backups to CD or DVD media
  75. cedar-backup2-doc - local and remote backups to CD or DVD media (documentation)
  76. cl-sql-mysql - CLSQL database backend, MySQL
  77. cl-sql-tests - Testing suite for CLSQL
  78. collectd-core - statistics collection and monitoring daemon (core system)
  79. courier-authlib-mysql - MySQL support for the Courier authentication library
  80. courier-webadmin - Courier mail server - web-based administration frontend
  81. cqrlog - Advanced logging program for hamradio operators
  82. cvm-mysql - Credential Validation Modules (MySQL)
  83. dbf2mysql - xBase <--> MySQL
  84. dish - diligence/distributed shell for parallel sysadmin
  85. dovecot-mysql - secure POP3/IMAP server - MySQL support
  86. dpm-copy-server-mysql - DPM copy server with MySQL database backend
  87. dpm-name-server-mysql - DPM nameserver server with MySQL database backend
  88. dpm-server-mysql - Disk Pool Manager (DPM) server with MySQL database backend
  89. dpm-srm-server-mysql - DPM SRM server with MySQL database backend
  90. dpsyco-mysql - Automate administration of access to mysql
  91. drizzle - Server binaries for Drizzle Database
  92. drizzle-client - Client binaries for Drizzle Database
  93. drizzle-dbg - Debugging symbols for Drizzle
  94. drizzle-dev-doc - API Documentation for drizzle
  95. drizzle-doc - Documentation for Drizzle
  96. drizzle-plugin-auth-file - File-based authentication for Drizzle
  97. drizzle-plugin-auth-http - HTTP authentication for Drizzle
  98. drizzle-plugin-auth-ldap - LDAP authentication for Drizzle
  99. drizzle-plugin-auth-pam - PAM authentication for Drizzle
  100. drizzle-plugin-auth-schema - Schema authentication for Drizzle
  101. drizzle-plugin-debug - Plugin that facilitates debugging Drizzle
  102. drizzle-plugin-dev - Development files for Drizzle plugin development
  103. drizzle-plugin-gearman-udf - Gearman User Defined Functions for Drizzle
  104. drizzle-plugin-http-functions - HTTP Functions for Drizzle
  105. drizzle-plugin-js - Javascript plugin for Drizzle
  106. drizzle-plugin-json-server - JSON HTTP (NoSQL) interface for Drizzle
  107. drizzle-plugin-logging-gearman - Gearman Logging for Drizzle
  108. drizzle-plugin-logging-query - Query Logging for Drizzle
  109. drizzle-plugin-perf-dictionary - Performance Dictionary for Drizzle
  110. drizzle-plugin-query-log - Query logging for Drizzle
  111. drizzle-plugin-rabbitmq - RabbitMQ Transaction Log for Drizzle
  112. drizzle-plugin-regex-policy - Regex based authorization rules for Drizzle
  113. drizzle-plugin-simple-user-policy - Simple User Policy for Drizzle
  114. drizzle-plugin-slave - Replication Slave Plugin for Drizzle
  115. dspam-webfrontend - Webfrontend for DSPAM anti-spam filter
  116. dsyslog-module-mysql - advanced modular syslog daemon - MySQL support
  117. emma - extendable MySQL managing assistant
  118. falconpl-dbi-mysql - MySQL database abstraction layer for Falcon P.L
  119. ferret - CASE tool for data model editing
  120. fp-units-db - Free Pascal - database-library units dependency package
  121. fp-units-db-2.6.2 - Free Pascal - database-library units
  122. freeradius-mysql - MySQL module for FreeRADIUS server
  123. fsgateway - FUSE module to browse database's metadata, sugar datastores and xml files
  124. gambas3 - Complete visual development environment for Gambas
  125. gambas3-gb-db-mysql - MySQL driver for the Gambas database component
  126. gambas3-gb-mysql - Gambas MySQL component
  127. gbirthday - birthday reminder applet
  128. gmysqlcc - graphical client for managing MySQL databases
  129. gnash-ext-mysql - GNU Shockwave Flash (SWF) player - MySQL extension
  130. gnokii-smsd-mysql - SMSD plugin for MySQL storage backend
  131. gsql-mysql-engine - MySQL engine for GSQL
  132. handlersocket-doc - HandlerSocket command line client
  133. handlersocket-mysql-5.5 - HandlerSocket plugin for MySQL 5.5
  134. hoteldruid - web-based property management system for hotels or B&Bs
  135. htcheck - Utility for checking web site for dead/external links
  136. htcheck-php - Simple php interface to database generated by ht://Check
  137. hydra - very fast network logon cracker
  138. hydra-gtk - very fast network logon cracker - GTK+ based GUI
  139. ilohamail - Light weight yet full featured multilingual web-based IMAP/POP3 client
  140. irssi-scripts - collection of scripts for irssi
  141. jffnms - PHP Network Management System
  142. kamailio - very fast and configurable SIP proxy
  143. kamailio-mysql-modules - MySQL database connectivity module for Kamailio
  144. kannel - WAP and SMS gateway
  145. kbtin - tintin++ style text-based MUD client
  146. kexi-mysql-driver - MySQL support for kexi
  147. lcmaps-plugins-jobrep-admin - Jobrepository database setup tools
  148. letodms - document management system based on PHP and MySQL
  149. lfc-server-mysql - LCG File Catalog (LFC) server with MySQL database backend
  150. libapache2-mod-log-slow - Apache module for logging of slow requests handling
  151. libapache2-mod-log-sql - Use SQL to store/write your Apache queries logs - Base
  152. libapache2-mod-log-sql-dbi - Use SQL to store/write your Apache queries logs - DBI interface
  153. libapache2-mod-log-sql-mysql - Use SQL to store/write your Apache queries logs - MySQL interface
  154. libapq3.2.0 - Pluggable Ada 95 Binding to various database systems (library)
  155. libapq3.2.0-dbg - Pluggable Ada 95 Binding to various database systems (debug)
  156. libapq3.2.0-dev - Pluggable Ada 95 Binding to various database systems (development)
  157. libaprutil1-dbd-mysql - Apache Portable Runtime Utility Library - MySQL Driver
  158. libcgi-application-plugin-ratelimit-perl - Perl module for limiting the runmode call rate per user
  159. libcgi-session-expiresessions-perl - automatic deletion of expired CGI sessions
  160. libclass-dbi-loader-perl - Perl module for dynamic definition of Class::DBI sub classes
  161. libclass-dbi-mysql-perl - extensions to Class::DBI for MySQL
  162. libclass-dbi-perl - convenient abstraction layer to a database
  163. libcrypt-mysql-perl - Perl module to emulate the MySQL PASSWORD() function
  164. libdatetime-format-dbi-perl - abstraction layer for DateTime over some database vendors
  165. libdbd-mock-perl - Mock database driver for testing
  166. libdbd-mysql-ruby - Transitional package for ruby-dbd-mysql
  167. libdbd-mysql-ruby1.8 - Transitional package for ruby-dbd-mysql
  168. libdbd-mysql-ruby1.9.1 - Transitional package for ruby-dbd-mysql
  169. libdbd-sqlite2-perl - Perl DBI driver with a self-contained RDBMS (SQLite2 version)
  170. libdbix-class-perl - extensible and flexible object <-> relational mapper
  171. libdbix-class-schema-loader-perl - module to automate definition of a DBIx::Class::Schema
  172. libdbix-datasource-perl - database-independent module to create and drop functions
  173. libdbix-dbschema-perl - Perl module to manipulate schemas independently of databases
  174. libdbix-easy-perl - Easy to Use DBI Interface
  175. libdbix-fulltextsearch-perl - Indexing documents with MySQL as storage
  176. libdbix-introspector-perl - module to detect what database code is connected to
  177. libdrizzle-dbg - library for the Drizzle and MySQL protocols, debug symbols
  178. libdrizzle-dev - library for the Drizzle and MySQL protocols, development files
  179. libdrizzle4 - library for the Drizzle and MySQL protocols
  180. libdrizzledmessage-dev - Devel library containing serialized messages used with Drizzle
  181. libdrizzledmessage0 - Library containing serialized messages used with Drizzle
  182. libdspam7-drv-mysql - MySQL backend for DSPAM anti-spam filter
  183. libeigenbase-farrago-java - Java framework for constructing RDBMS services
  184. libgda-5.0-mysql - MySQL provider for libgda database abstraction library
  185. libghc-hdbc-dev - Haskell Database Connectivity, GHC package
  186. libghc-hdbc-doc - Haskell Database Connectivity, Documentation
  187. libghc-hdbc-odbc-dev - unixODBC HDBC (Haskell Database Connectivity) Driver for GHC
  188. libghc-hdbc-odbc-doc - unixODBC HDBC (Haskell Database Connectivity) Documentation
  189. libghc-hdbc-odbc-prof - unixODBC Haskell Database Connectivity Driver; profiling libraries
  190. libghc-hdbc-sqlite3-dev - Sqlite v3 HDBC (Haskell Database Connectivity) Driver for GHC
  191. libghc-hdbc-sqlite3-doc - Sqlite v3 HDBC (Haskell Database Connectivity) Documentation
  192. libghc-hdbc-sqlite3-prof - Sqlite v3 HDBC Driver for GHC; profiling libraries
  193. libghc-highlighting-kate-dev - syntax highlighting library based on Kate syntax descriptions
  194. libghc-highlighting-kate-doc - library documentation for highlighting-kate; documentation
  195. libghc-highlighting-kate-prof - highlighting-kate library with profiling enabled; profiling libraries
  196. libghc-hsql-dev - Multi-Database Interface System library for GHC
  197. libghc-hsql-doc - API documentation of the HSQL library for Haskell
  198. libghc-hsql-mysql-dev - MySQL driver of the HSQL library for GHC
  199. libghc-hsql-mysql-doc - API documentation of the hsql-mysql library for Haskell
  200. libghc-hsql-mysql-prof - MySQL driver of the HSQL library for GHC; profiling libraries
  201. libghc-hsql-odbc-dev - UnixODBC driver of the HSQL library for GHC
  202. libghc-hsql-odbc-doc - API documentation of the hsql-odbc library for Haskell
  203. libghc-hsql-odbc-prof - UnixODBC driver of the HSQL profiling library for GHC
  204. libghc-hsql-prof - Multi-Database Interface System profiling library for GHC
  205. libghc-hsql-sqlite3-dev - SQLite driver of the HSQL library for GHC
  206. libghc-hsql-sqlite3-doc - API documentation of the hsql-sqlite3 library for Haskell
  207. libghc-hsql-sqlite3-prof - SQLite driver of the HSQL profiling library for GHC
  208. libglpk36 - linear programming kit with integer (MIP) support
  209. libhsclient-dev - HandlerSocket client library
  210. libinnodb-dbg - Embedded InnoDB Library (debug files)
  211. libinnodb-dev - Embedded InnoDB Library (dev files)
  212. libinnodb3 - Embedded InnoDB Library
  213. libkaya-mysql-dev - MySQL binding for kaya
  214. libkiokudb-backend-dbi-perl - DBI backend for KiokuDB
  215. libmariadbclient-dev - MariaDB database development files
  216. libmariadbd-dev - MariaDB embedded database development files
  217. libmyodbc - the MySQL ODBC driver
  218. libmysql++-dev - MySQL C++ library bindings (development)
  219. libmysql++-doc - MySQL C++ library bindings (documentation and examples)
  220. libmysql++3 - MySQL C++ library bindings (runtime)
  221. libmysql-cil-dev - MySQL database connector for CLI
  222. libmysql-diff-perl - module for comparing the table structure of two MySQL databases
  223. libmysql-java - Java database (JDBC) driver for MySQL
  224. libmysql-ocaml - OCaml bindings for MySql (runtime package)
  225. libmysql-ocaml-dev - OCaml bindings for MySql (development package)
  226. libmysql6.4-cil - MySQL database connector for CLI
  227. libmysqld-pic - PIC version of MySQL embedded server development files
  228. libnet-google-safebrowsing2-perl - Perl extension for the Google Safe Browsing v2 API
  229. libnet-handlersocket-perl - HandlerSocket perl client library.
  230. libnss-mysql-bg - NSS module for using MySQL as a naming service
  231. libopendbx1-mysql - MySQL backend for OpenDBX
  232. libpam-mysql - PAM module allowing authentication from a MySQL server
  233. libphp-adodb - ADOdb database abstraction layer for PHP
  234. libpoco-doc - Documentation for POCO - The C++ Portable Components
  235. libpocomysql9 - C++ Portable Components (POCO) MySQL library
  236. libpocomysql9-dbg - C++ Portable Components (POCO) MySQL library (debug version)
  237. libqt5sql5-mysql - Qt 5 MySQL database driver
  238. librdf-storage-mysql - RDF library, MySQL backend
  239. librdf-trine-perl - RDF Framework for Perl
  240. libreoffice-mysql-connector - MariaDB/MySQL Connector extension for LibreOffice
  241. libsemweb1.0-cil - Semantic Web/RDF library
  242. libsphinx-ruby - Fast standalone full-text SQL search engine - Client library
  243. libsphinxclient-0.0.1 - Fast standalone full-text SQL search engine - Client library
  244. libsphinxclient-dev - Fast standalone full-text SQL search engine - Client library
  245. libsql-reservedwords-perl - Perl extension that indicates if words are reserved by SQL
  246. libsqlite3-mod-impexp - SQLite3 extension module for SQL script, XML, JSON and CSV import/export
  247. libtango8 - TANGO distributed control system - shared library
  248. libtango8-dbg - TANGO distributed control system - debug library
  249. libtango8-dev - TANGO distributed control system - development library
  250. libtango8-doc - TANGO distributed control system - documentation
  251. libterralib - C++ library for Geographical Information Systems
  252. libterralib-dev - C++ library for Geographical Information Systems -- development package
  253. libterralib-doc - C++ library for Geographical Information Systems -- documentation package
  254. libtext-tabulardisplay-perl - Perl module to display text as a formatted table
  255. libtime-piece-mysql-perl - module adding MySQL-specific methods to Time::Piece
  256. libtntdb-dev - Development headers for tntdb
  257. libtntdb4 - C++ class library for easy database access
  258. libur-perl - object/relation mapper library
  259. libuser-simple-perl - module for simple user sessions management
  260. libwtdbomysql-dev - MySQL/MariaDB backend for Wt::Dbo [development]
  261. libwtdbomysql35 - MySQL/MariaDB backend for Wt::Dbo [runtime]
  262. libzdb-dev - Zild Database Library
  263. libzdb9 - Zild Database Library
  264. lighttpd-mod-mysql-vhost - MySQL-based virtual host configuration for lighttpd
  265. lua-dbi-mysql - DBI library for the Lua language, MySQL backend
  266. lua-dbi-mysql-dbg - DBI library for the Lua language, MySQL backend debug symbols
  267. lua-dbi-mysql-dev - DBI library for the Lua language, MySQL development files
  268. lua-sql-mysql - luasql library for the Lua language
  269. lua-sql-mysql-dev - luasql development files for the Lua language
  270. mariadb-client-5.5 - MariaDB database client binaries
  271. mariadb-client-core-5.5 - MariaDB database core client binaries
  272. mariadb-server-5.5 - MariaDB database server binaries
  273. mariadb-server-core-5.5 - MariaDB database core server files
  274. mariadb-test-5.5 - MariaDB database regression test suite
  275. mha4mysql-manager - Master High Availability Manager and Tools for MySQL, Manager Package
  276. mha4mysql-node - Master High Availability Manager and Tools for MySQL, Node Package
  277. monodevelop-database - Database plugin for MonoDevelop
  278. monodoc-mysql-manual - compiled XML documentation for the MySql.Data library
  279. monodoc-semweb-manual - compiled XML documentation for SemWeb
  280. muddleftpd - A flexible and efficient FTP daemon
  281. mydumper - High-performance MySQL backup tool
  282. mylvmbackup - quickly creating backups of MySQL server's data files
  283. mysql-client-5.6 - MySQL database client binaries
  284. mysql-client-core-5.6 - MySQL database core client binaries
  285. mysql-common-5.6 - MySQL 5.6 specific common files, e.g. /etc/mysql/conf.d/my-5.6.cnf
  286. mysql-mmm-agent - Multi-Master Replication Manager for MySQL - agent daemon
  287. mysql-mmm-common - Multi-Master Replication Manager for MySQL - common files
  288. mysql-mmm-monitor - Multi-Master Replication Manager for MySQL - monitoring daemon
  289. mysql-mmm-tools - Multi-Master Replication Manager for MySQL - tools
  290. mysql-proxy - high availability, load balancing and query modification for mysql
  291. mysql-server-5.6 - MySQL database server binaries and system database setup
  292. mysql-server-core-5.6 - MySQL database server binaries
  293. mysql-source-5.5 - MySQL source
  294. mysql-source-5.6 - MySQL source
  295. mysql-testsuite - MySQL testsuite
  296. mysql-testsuite-5.5 - MySQL testsuite
  297. mysql-testsuite-5.6 - MySQL 5.6 testsuite
  298. mysql-utilities - collection of scripts for managing MySQL servers
  299. mysql-workbench - MySQL Workbench - a visual database modeling, administration and queuing tool
  300. mysql-workbench-data - MySQL Workbench -- architecture independent data
  301. mysqltcl - interface to the MySQL database for the Tcl language
  302. mysqltuner - high-performance MySQL tuning script
  303. mysqmail - real-time logging system in MySQL
  304. mysqmail-courier-logger - real-time logging system in MySQL - Courier traffic-logger
  305. mysqmail-dovecot-logger - real-time logging system in MySQL - Dovecot traffic-logger
  306. mysqmail-postfix-logger - real-time logging system in MySQL - Postfix traffic-logger
  307. mysqmail-pure-ftpd-logger - real-time logging system in MySQL - Pure-FTPd traffic-logger
  308. mythexport - Export MythTV recording to portable media players
  309. mytop - top like query monitor for MySQL
  310. nagios-plugins-contrib - Plugins for nagios compatible monitoring systems
  311. nanoweb - HTTP server written in PHP
  312. ndoutils-nagios3-mysql - This provides the NDOUtils for Nagios with MySQL support
  313. node-mysql - MySQL client implementation for Node.js
  314. note - small program managing notes from commandline
  315. nova-ajax-console-proxy - OpenStack Compute - AJAX console proxy - transitional package
  316. nova-api-ec2 - OpenStack Compute - EC2 API frontend
  317. nova-baremetal - Openstack Compute - baremetal virt
  318. nova-cells - Openstack Compute - cells
  319. nova-compute-qemu - OpenStack Compute - compute node (QEmu)
  320. nova-compute-vmware - OpenStack Compute - compute node (VMware)
  321. nova-compute-xen - OpenStack Compute - compute node (Xen)
  322. nova-conductor - OpenStack Compute - conductor service
  323. nova-console - OpenStack Compute - Console
  324. nova-consoleauth - OpenStack Compute - Console Authenticator
  325. nova-novncproxy - OpenStack Compute - NoVNC proxy
  326. nova-spiceproxy - OpenStack Compute - spice html5 proxy
  327. nova-xvpvncproxy - OpenStack Compute - XVP VNC proxy
  328. nuauth-extra - The authenticating firewall [extra modules]
  329. nuauth-log-mysql - The authenticating firewall [MySQL log module]
  330. oar-server-mysql - OAR batch scheduler MySQL server backend package
  331. oar-user-mysql - OAR batch scheduler MySQL user backend package
  332. opendnssec-dbg-mysql - Debug symbols for OpenDNSSEC (Enforcer with MySQL support)
  333. opendnssec-enforcer - tool to prepare DNSSEC keys (common package)
  334. opendnssec-enforcer-mysql - tool to prepare DNSSEC keys (mysql backend)
  335. papercut - simple and extensible NNTP server
  336. parser3-mysql - MySQL driver for Parser 3
  337. pdns-backend-mysql - generic MySQL backend for PowerDNS
  338. pennmush-mysql - text-based multi-user virtual world server with MySQL support
  339. percona-toolkit - Command-line tools for MySQL and system tasks
  340. percona-xtrabackup - Open source backup tool for InnoDB and XtraDB
  341. percona-xtradb-cluster-client-5.5 - Percona Server database client binaries
  342. percona-xtradb-cluster-common-5.5 - Percona Server database common files
  343. percona-xtradb-cluster-server-5.5 - Percona Server database server binaries
  344. percona-xtradb-cluster-testsuite-5.5 - Percona Server database test suite
  345. perdition - POP3 and IMAP4 Proxy server
  346. perdition-mysql - Library to allow perdition to access MySQL based popmaps
  347. pgloader - loads flat data files into PostgreSQL
  348. php-db - PHP PEAR Database Abstraction Layer
  349. php-mdb2-driver-mysql - PHP PEAR module to provide a MySQL driver for MDB2
  350. php5-adodb - Extension optimising the ADOdb database abstraction library
  351. php5-mysqlnd - MySQL module for php5 (Native Driver)
  352. php5-mysqlnd-ms - MySQL replication and load balancing module for PHP
  353. php5-pinba - Pinba module for PHP 5
  354. phpmyadmin - MySQL web administration tool
  355. pike7.8-core - Powerful interpreted programming language
  356. pike7.8-mysql - MySQL modules for Pike
  357. pinba-engine-mysql-5.5 - realtime statistics server for PHP using MySQL as a read-only interface
  358. pnopaste - Pastebin with syntax highlighting
  359. pnopaste-cli - Pastebin with syntax highlighting (cli tool)
  360. postfix-cluebringer-mysql - metapackage for mysql support in postfix-cluebringer
  361. postfix-gld - greylisting daemon for postfix, written in C, uses MySQL
  362. proftpd-mod-mysql - Versatile, virtual-hosting FTP daemon - MySQL module
  363. puppet-module-puppetlabs-mysql - Puppet module for mysql
  364. pure-ftpd-mysql - Secure and efficient FTP server with MySQL user authentication
  365. pysieved - managesieve server
  366. python-mysql.connector - pure Python implementation of MySQL Client/Server protocol
  367. python-pysqlite2 - Python interface to SQLite 3
  368. python-sphinxapi - Fast standalone full-text SQL search engine - Client library
  369. python-storm - object-relational mapper (ORM) for Python
  370. python-storm-dbg - object-relational mapper (ORM) for Python - debugging files
  371. python3-mysql.connector - pure Python implementation of MySQL Client/Server protocol (Python3)
  372. r-cran-dbi - GNU R package providing a generic database interface
  373. r-cran-rmysql - GNU R package providing a DBI-compliant interface to MySQL
  374. r-cran-rodbc - GNU R package for ODBC database access
  375. ratbox-services-mysql - IRC services for use with ircd-ratbox with the mysql backend
  376. rddmarc - DMARC report processing scripts collection
  377. redmine - flexible project management web application
  378. redmine-mysql - metapackage providing MySQL dependencies for Redmine
  379. refdb-server - Reference database and bibliography tool - sql server
  380. request-tracker4 - extensible trouble-ticket tracking system
  381. rfc5766-turn-server - TURN and STUN server for VoIP
  382. rhythmbox-ampache - play audio streams from an Ampache server
  383. robojournal - cross-platform journal/diary tool
  384. robojournal-doc - cross-platform journal/diary tool - documentation
  385. root-plugin-sql-mysql - MySQL client plugin for ROOT
  386. roundcube-mysql - metapackage providing MySQL dependencies for RoundCube
  387. rsyslog-mysql - MySQL output plugin for rsyslog
  388. rt4-db-mysql - MySQL database backend for request-tracker4
  389. rt4-db-sqlite - SQLite database backend for request-tracker4
  390. ruby-amazon-ec2 - Ruby library for accessing Amazon EC2
  391. ruby-dataobjects - Unified interface to various databases for Ruby
  392. ruby-dataobjects-mysql - MySQL adapter for ruby-dataobjects
  393. ruby-dbd-mysql - Ruby/DBI MySQL driver
  394. ruby-foreigner - Foreign Keys for Rails
  395. ruby-mysql - MySQL module for Ruby
  396. ruby-mysql2 - simple, fast MySQL library for Ruby
  397. ruby-sequel - Simple, flexible, and powerful SQL database access toolkit for Ruby
  398. ruby-yaml-db - library to export/import of database into/from yaml files
  399. sagan - Real-time System & Event Log Monitoring System
  400. sagan-rules - Real-time System & Event Log Monitoring System [rules]
  401. sbnc-dbg - IRC proxy for multiple users (debugging symbols)
  402. solr-common - Enterprise search server based on Lucene3 - common files
  403. sphinxsearch - Fast standalone full-text SQL search engine
  404. spl-core - SPL Programming Language
  405. spl-mysql - SPL Programming Language -- MySQL adapter
  406. sputnik - Extensible wiki
  407. sqlgrey - Postfix Greylisting Policy Server
  408. sqlline - JDBC command-line utility for issuing SQL
  409. sympa - Modern mailing list manager
  410. sysbench - Cross-platform and multi-threaded benchmark tool
  411. syslog-ng-mod-sql - Enhanced system logging daemon (SQL plugin)
  412. tango-db - TANGO distributed control system - database server
  413. tarantool-mysql-plugin - Tarantool in-memory database - MySQL connector
  414. tcl8.6-tdbc-mysql - Tcl Database Connectivity
  415. tntdb-mysql4 - MySQL backend for tntdb database access library
  416. tora - graphical toolkit for database developers and administrators
  417. tora-dbg - graphical toolkit for database developers and administrators - debugging symbols
  418. torrentflux - web based, feature-rich BitTorrent download manager
  419. tsung - distributed multi-protocol load testing tool
  420. ukolovnik - Simple todo manager using PHP and MySQL
  421. ulogd-mysql - transitional dummy package for ulogd2-mysql
  422. ulogd2 - Netfilter Userspace Logging Daemon
  423. ulogd2-mysql - MySQL extension to ulogd
  424. vbackup - modular backup utility
  425. viewvc-query - utility to query CVS and Subversion commit database
  426. voms-mysql-plugin - VOMS server plugin for MySQL
  427. voms-mysql-plugin-dbg - VOMS server plugin for MySQL - Debug Symbols
  428. webgui - Content management platform to maintain complex web sites
  429. webgui-l10n-de - German localization for WebGUI CMS
  430. webgui-l10n-es - Spanish localization for WebGUI CMS
  431. webgui-l10n-nl - Dutch localization for WebGUI CMS
  432. yasat - simple stupid audit tool
  433. yate-mysql - MySQL support module for yate
  434. zabbix-proxy-mysql - network monitoring solution - proxy (using MySQL)
  435. zabbix-server-mysql - network monitoring solution - server (using MySQL)
  436. owncloud - empty package

  

实际上要安装的是两个东西,server和client

mysql-server-5.6 - MySQL database server binaries and system database setup

mysql-client-5.6 - MySQL database client binaries

 

 

3.接着就安装着两个二进制包了

sudo apt-get mysql-server

不需要些5.5这些,dpkg自动帮你分析依赖关系

  1. Reading package lists... Done
  2. Building dependency tree
  3. Reading state information... Done
  4. The following packages were automatically installed and are no longer required:
  5. diffstat gettext hardening-includes intltool-debian libapt-pkg-perl
  6. libarchive-zip-perl libasprintf-dev libauthen-sasl-perl libautodie-perl
  7. libclass-accessor-perl libdigest-hmac-perl libdpkg-perl libemail-valid-perl
  8. libfile-fcntllock-perl libgettextpo-dev libio-pty-perl
  9. libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl
  10. libipc-run-perl libipc-system-simple-perl liblist-moreutils-perl
  11. libmailtools-perl libnet-dns-perl libnet-domain-tld-perl libnet-ip-perl
  12. libnet-libidn-perl libnet-smtp-ssl-perl libnet-ssleay-perl
  13. libparse-debianchangelog-perl libperlio-gzip-perl libsocket6-perl
  14. libsub-identify-perl libsub-name-perl libtext-levenshtein-perl
  15. libtimedate-perl liburi-perl patchutils t1utils
  16. Use 'apt-get autoremove' to remove them.
  17. The following extra packages will be installed:
  18. libaio1 libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient18
  19. libterm-readkey-perl mysql-client-5.5 mysql-client-core-5.5 mysql-common
  20. mysql-server-5.5 mysql-server-core-5.5
  21. Suggested packages:
  22. libmldbm-perl libnet-daemon-perl libplrpc-perl libsql-statement-perl
  23. libipc-sharedcache-perl tinyca mailx
  24. The following NEW packages will be installed:
  25. libaio1 libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient18
  26. libterm-readkey-perl mysql-client-5.5 mysql-client-core-5.5 mysql-common
  27. mysql-server mysql-server-5.5 mysql-server-core-5.5
  28. 0 upgraded, 12 newly installed, 0 to remove and 399 not upgraded.
  29. Need to get 9,398 kB of archives.
  30. After this operation, 93.7 MB of additional disk space will be used.
  31. Do you want to continue? [Y/n] Y
  32. Get:1 http://us.archive.ubuntu.com/ubuntu/ trusty/main libaio1 i386 0.3.109-4 [6,578 B]
  33. Get:2 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-common all 5.5.44-0ubuntu0.14.04.1 [13.9 kB]
  34. Get:3 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main libmysqlclient18 i386 5.5.44-0ubuntu0.14.04.1 [592 kB]
  35. Get:4 http://us.archive.ubuntu.com/ubuntu/ trusty/main libdbi-perl i386 1.630-1 [881 kB]
  36. Get:5 http://us.archive.ubuntu.com/ubuntu/ trusty/main libdbd-mysql-perl i386 4.025-1 [99.6 kB]
  37. Get:6 http://us.archive.ubuntu.com/ubuntu/ trusty/main libterm-readkey-perl i386 2.31-1 [27.2 kB]
  38. Get:7 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-client-core-5.5 i386 5.5.44-0ubuntu0.14.04.1 [701 kB]
  39. Get:8 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-client-5.5 i386 5.5.44-0ubuntu0.14.04.1 [1,557 kB]
  40. Get:9 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-server-core-5.5 i386 5.5.44-0ubuntu0.14.04.1 [3,481 kB]
  41. Get:10 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-server-5.5 i386 5.5.44-0ubuntu0.14.04.1 [1,962 kB]
  42. Get:11 http://us.archive.ubuntu.com/ubuntu/ trusty/main libhtml-template-perl all 2.95-1 [65.5 kB]
  43. Get:12 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main mysql-server all 5.5.44-0ubuntu0.14.04.1 [12.2 kB]
  44. Fetched 9,398 kB in 1min 49s (85.5 kB/s)
  45. Preconfiguring packages ...
  46. Selecting previously unselected package libaio1:i386.
  47. (Reading database ... 144858 files and directories currently installed.)
  48. Preparing to unpack .../libaio1_0.3.109-4_i386.deb ...
  49. Unpacking libaio1:i386 (0.3.109-4) ...
  50. Selecting previously unselected package mysql-common.
  51. Preparing to unpack .../mysql-common_5.5.44-0ubuntu0.14.04.1_all.deb ...
  52. Unpacking mysql-common (5.5.44-0ubuntu0.14.04.1) ...
  53. Selecting previously unselected package libmysqlclient18:i386.
  54. Preparing to unpack .../libmysqlclient18_5.5.44-0ubuntu0.14.04.1_i386.deb ...
  55. Unpacking libmysqlclient18:i386 (5.5.44-0ubuntu0.14.04.1) ...
  56. Selecting previously unselected package libdbi-perl.
  57. Preparing to unpack .../libdbi-perl_1.630-1_i386.deb ...
  58. Unpacking libdbi-perl (1.630-1) ...
  59. Selecting previously unselected package libdbd-mysql-perl.
  60. Preparing to unpack .../libdbd-mysql-perl_4.025-1_i386.deb ...
  61. Unpacking libdbd-mysql-perl (4.025-1) ...
  62. Selecting previously unselected package libterm-readkey-perl.
  63. Preparing to unpack .../libterm-readkey-perl_2.31-1_i386.deb ...
  64. Unpacking libterm-readkey-perl (2.31-1) ...
  65. Selecting previously unselected package mysql-client-core-5.5.
  66. Preparing to unpack .../mysql-client-core-5.5_5.5.44-0ubuntu0.14.04.1_i386.deb ...
  67. Unpacking mysql-client-core-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  68. Selecting previously unselected package mysql-client-5.5.
  69. Preparing to unpack .../mysql-client-5.5_5.5.44-0ubuntu0.14.04.1_i386.deb ...
  70. Unpacking mysql-client-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  71. Selecting previously unselected package mysql-server-core-5.5.
  72. Preparing to unpack .../mysql-server-core-5.5_5.5.44-0ubuntu0.14.04.1_i386.deb ...
  73. Unpacking mysql-server-core-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  74. Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
  75. Setting up mysql-common (5.5.44-0ubuntu0.14.04.1) ...
  76. Selecting previously unselected package mysql-server-5.5.
  77. (Reading database ... 145221 files and directories currently installed.)
  78. Preparing to unpack .../mysql-server-5.5_5.5.44-0ubuntu0.14.04.1_i386.deb ...
  79. Unpacking mysql-server-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  80. Selecting previously unselected package libhtml-template-perl.
  81. Preparing to unpack .../libhtml-template-perl_2.95-1_all.deb ...
  82. Unpacking libhtml-template-perl (2.95-1) ...
  83. Selecting previously unselected package mysql-server.
  84. Preparing to unpack .../mysql-server_5.5.44-0ubuntu0.14.04.1_all.deb ...
  85. Unpacking mysql-server (5.5.44-0ubuntu0.14.04.1) ...
  86. Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
  87. Processing triggers for ureadahead (0.100.0-16) ...
  88. ureadahead will be reprofiled on next reboot
  89. Setting up libaio1:i386 (0.3.109-4) ...
  90. Setting up libmysqlclient18:i386 (5.5.44-0ubuntu0.14.04.1) ...
  91. Setting up libdbi-perl (1.630-1) ...
  92. Setting up libdbd-mysql-perl (4.025-1) ...
  93. Setting up libterm-readkey-perl (2.31-1) ...
  94. Setting up mysql-client-core-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  95. Setting up mysql-client-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  96. Setting up mysql-server-core-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  97. Setting up mysql-server-5.5 (5.5.44-0ubuntu0.14.04.1) ...
  98. mysql start/running, process 7374
  99. Setting up libhtml-template-perl (2.95-1) ...
  100. Processing triggers for ureadahead (0.100.0-16) ...
  101. Setting up mysql-server (5.5.44-0ubuntu0.14.04.1) ...
  102. Processing triggers for libc-bin (2.19-0ubuntu6.5) ...   

自动帮你处理依赖关系,不用担心安装的时候提示缺包什么的

以前在suse安装mysql是5.1版本,那是因为软件源并不是最新的

 

2.如何测试镜像地址的速度?

 

 

  

 

转载于:https://www.cnblogs.com/hellotracy/articles/4881287.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/401351
推荐阅读
相关标签
  

闽ICP备14008679号