Start os5.1磁盘上找不到os文件安装文件

4145人阅读
win7 64位下如何安装配置mysql
1、 MySQL Community Server 5.6.10
2、解压到d:\MySQL.(路径自己指定)
3、在d:\MySQL下新建my.ini配置文件,内容如下:
*****************配置文件开始*********************
# MySQL Server Instance Configuration File
#----------------------------------------------------------------------
# Generated by the MySQL Server Instance ConfigurationWizard
# Installation Instructions
#----------------------------------------------------------------------
# CLIENT SECTION
#----------------------------------------------------------------------
# The following options will be read by MySQL clientapplications.
# Note that only client applications shipped by MySQLare guaranteed
# to read this section. If you want your own MySQLclient program to
# honor these values, you need to specify it as anoption during the
# MySQL client library initialization.
default-character-set=gbk
# SERVER SECTION
#----------------------------------------------------------------------
# The following options will be read by the MySQL Server.Make sure that
# you have installed the server correctly (see above)so it reads this
# The TCP/IP Port the MySQL Server will listen on
#Path to installation directory. All paths are usuallyresolved relative to this.
basedir=&d:\MySQL\&
#Path to the database root
datadir=&d:\MySQL\Data&
[WinMySQLadmin]
Server=&d:\MySQL\bin\mysqld.exe&
# The default character set that will be used when anew schema or table is
# created and no character set is defined
default-character-set=gbk
# The default storage engine that will be used whencreate new tables when
default-storage-engine=INNODB
# Set the SQL mode to strict
sql-mode=&STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION&
# The maximum amount of concurrent sessions the MySQLserver will
# allow. One of these connections will be reserved fora user with
# SUPER privileges to allow the administrator to logineven if the
# connection limit has been reached.
max_connections=100
# Query cache is used to cache SELECT results andlater return them
# without actual executing the same query once again.Having the query
# cache enabled may result in significant speedimprovements, if your
# have a lot of identical queries and rarely changingtables. See the
# &Qcache_lowmem_prunes& status variable tocheck if the current value
# is high enough for your load.
# Note: In case your tables change very often or ifyour queries are
# textually different every time, the query cache mayresult in a
# slowdown instead of a performance improvement.
query_cache_size=0
# The number of open tables for all threads.Increasing this value
# increases the number of file descriptors that mysqldrequires.
# Therefore you have to make sure to set the amount ofopen files
# allowed to at least 4096 in the variable&open-files-limit& in
# section [mysqld_safe]
table_cache=256
# Maximum size for internal (in-memory) temporarytables. If a table
# grows larger than this value, it is automaticallyconverted to disk
# based table This limitation is for a single table.There can be many
# of them.
tmp_table_size=26M
# How many threads we should keep in a cache forreuse. When a client
# disconnects, the client's threads are put in thecache if there aren't
# more than thread_cache_size threads frombefore.& This greatly reduces
# the amount of thread creations needed if you have alot of new
# connections. (Normally this doesn't give a notableperformance
# improvement if you have a good threadimplementation.)
thread_cache_size=8
#*** MyISAM Specific options
# The maximum size of the temporary file MySQL isallowed to use while
# recreating the index (during REPAIR, ALTER TABLE orLOAD DATA INFILE.
# If the file-size would be bigger than this, theindex will be created
# through the key cache (which is slower).
myisam_max_sort_file_size=100G
# If the temporary file used for fast index creationwould be bigger
# than using the key cache by the amount specifiedhere, then prefer the
# key cache method.&This is mainly used to force long character keys in
# large tables to use the slower key cache method tocreate the index.
myisam_sort_buffer_size=52M
# Size of the Key Buffer, used to cache index blocksfor MyISAM tables.
# Do not set it larger than 30% of your availablememory, as some memory
# is also required by the OS to cache rows. Even ifyou're not using
# MyISAM tables, you should still set it to 8-64M asit will also be
# used for internal temporary disk tables.
key_buffer_size=40M
# Size of the buffer used for doing full table scansof MyISAM tables.
# Allocated per thread, if a full scan is needed.
read_buffer_size=64K
read_rnd_buffer_size=256K
# This buffer is allocated when MySQL needs to rebuildthe index in
# REPAIR, OPTIMZE, ALTER table statements as well asin LOAD DATA INFILE
# into an empty table. It is allocated per thread sobe careful with
# large settings.
sort_buffer_size=256K
#*** INNODB Specific options ***
innodb_data_home_dir=&d:\MySQL\Data\INNODB\&
# Use this option if you have a MySQL server withInnoDB support enabled
# but you do not plan to use it. This will save memoryand disk space
# and speed up some things.
#skip-innodb
# Additional memory pool that is used by InnoDB tostore metadata
# information.&If InnoDB requires more memory for this purpose it will
# start to allocate it from the OS.& As this is fast enough on most
# recent operating systems, you normally do not needto change this
# value. SHOW INNODB STATUS will display the currentamount used.
innodb_additional_mem_pool_size=2M
# If set to 1, InnoDB will flush (fsync) thetransaction logs to the
# disk at each commit, which offers full ACIDbehavior. If you are
# willing to compromise this safety, and you arerunning small
# transactions, you may set this to 0 or 2 to reducedisk I/O to the
# logs. Value 0 means that the log is only written tothe log file and
# the log file flushed to disk approximately once persecond. Value 2
# means the log is written to the log file at eachcommit, but the log
# file is only flushed to disk approximately once persecond.
innodb_flush_log_at_trx_commit=1
# The size of the buffer InnoDB uses for buffering logdata. As soon as
# it is full, InnoDB will have to flush it to disk. Asit is flushed
# once per second anyway, it does not make sense tohave it very large
# (even with long transactions).
innodb_log_buffer_size=1M
# InnoDB, unlike MyISAM, uses a buffer pool to cacheboth indexes and
# row data. The bigger you set this the less disk I/Ois needed to
# access data in tables. On a dedicated databaseserver you may set this
# parameter up to 80% of the machine physical memorysize. Do not set it
# too large, though, because competition of thephysical memory may
# cause paging in the operating system.& Note that on 32bit systems you
# might be limited to 2-3.5G of user level memory perprocess, so do not
# set it too high.
innodb_buffer_pool_size=77M
# Size of each log file in a log group. You should setthe combined size
# of log files to about 25%-100% of your buffer poolsize to avoid
# unneeded buffer pool flush activity on log fileoverwrite. However,
# note that a larger logfile size will increase thetime needed for the
# recovery process.
innodb_log_file_size=39M
# Number of threads allowed inside the InnoDB kernel.The optimal value
# depends highly on the application, hardware as wellas the OS
# scheduler properties. A too high value may lead tothread thrashing.
innodb_thread_concurrency=8
*****************配置文件结束*********************
配置文件也放在了附件里,大家可以根据需要修改。
重点是以下配置,其中datadir的目录名称必须是data,并且好像必须是MySQL目录下的data.之前自己制定了其他目录,一直出现1067的错误。
#Path to installation directory. All paths are usuallyresolved relative to this.
basedir=&d:\MySQL\&
#Path to the database root
datadir=&d:\MySQL\Data&
4、在windows环境变量里加入以下内容(方便执行命令行命令)
新建MYSQL_HOME=&d:\MySQL\&
在Path里加入%MYSQL_HOME%\bin
5、将mysql注册为windows系统服务。具体操作是在命令行中执行以下命令:
mysqld install MySQL --defaults-file=&d:\MySQL\my.ini&
移除服务为 mysqld remove
6、第5步成功后,在命令行启动mysql
c:&net start mysql
7、修改root的密码为
&&& 方法一:
c:&mysql –uroot
mysql& UPDATE user SET password=PASSWORD(&&) WHEREuser='root';
  mysql& FLUSH PRIVILEGES;
mysql& QUIT
利用第三方管理工具Navicat8 for Mysql进行修改
1.开始在用msyql的配置文件,复制一个出来,并在里面加上了
[mysqld] 下加上了
basedir=D:/mysql-5.1.6
datadir=D:/mysql-5.1.6/data
&修改名称为 my.ini并放到C盘windows下。
然后cmd输入:(当然首先要在path里设置指到mysql的bin 目录)
C:\Documents and Settings\bob&mysqld --install MySQL
&提示:Service successfully installed.
C:\Documents and Settings\bob&net start mysql
发生系统错误 2。
系统找不到指定的文件。
2,经过几次试验并查看资料应该这样:
& 1.根据my-small.ini文件复制出来后 放到windows下,名称该为my.ini,并在里面加上
&[WinMySQLAdmin]
Server=D:/mysql-5.1.6/bin/mysqld.exe
&& 在[mysqld]
找你个添加:
basedir=D:/mysql-5.1.6
datadir=D:/mysql-5.1.6/data
& 2.然后cmd 转到相应目录下,(前面直接操作就是因为不转到msyql目录下,它会默认安装到c:下)
&&& msyqld --remove&& //关闭服务
&&&&& mysqld -install&&& //启动服务
&&&&& net start mysql&&&& //启动
&&&&& mysqlshow -u root mysql& //可以查看表
mysql -u root -p& //可以以root身份登录
还有一点没有验证的:
c:\windows目录优先级&c盘根目录&mysql目录,当然如果另外指定除外。这是在默认情况下。
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:9532次
排名:千里之外
(1)(4)(1)(1)(1)(1)StartOS&5.1&是&5.x&系列的第一个修正版,包含&5.0&正式版发布以来的所有更新,主要解决系统安装问题和完善软件包管理。
1、修复某些机器安装时提示软盘 IO 错误,卡死的问题。
2、修复某些机器 Windows 下安装 (loop方式),长时间卡在 17~18%的问题。(重要)
3、修复某些机器 LiveCD 启动时提示找不到安装介质,进入 initramfs shell 的问题。
4、软件中心(ypkg)支持配置多个软件源。(重要)
5、软件中心支持安装本地 YPK 软件包(取代 ypki),自动安装依赖关系包。
6、新创建用户权限等其它 Bug 修复。
&StartOS(起点操作系统)原雨林木风的YlmfOS。StartOS使用全新的包管理,全新的操作界面,是一个易用,安全,稳定,易扩展,更加符合中国人操作习惯的桌面操作系统。Linux 系统的安全,稳定是众所周知的事情,StartOS 将朝着易用的方向坚持走出自己的特色。
在经过四轮的测试版之后,全新的 StartOS 5.0 正式版已经诞生!相比测试版本,5.0正式版提升了系统的稳定性、软件管理中心的稳定性及软件选择多样性、图形界面优化,降低系统资源占用,更简化了一些用户操作功能。
感谢每一位为之诞生而付出努力的人,包括开发、测试、设计等人员,特别是热心的用户,没有你们,我们完全不可能做到!&
StartOS ver5.1版本 是 5.x 系列的第一个修正版,包含 5.0 正式版发布以来的所有更新,主要解决系统安装问题和完善软件包管理。
欢迎大家试用,感谢每一位关注 StartOS 的朋友。
本次发布带来:
1、修复某些机器安装时提示软盘 IO 错误,卡死的问题。
2、修复某些机器 Windows 下安装 (loop方式),长时间卡在 17~18%的问题。(重要)
3、修复某些机器 LiveCD 启动时提示找不到安装介质,进入 initramfs shell 的问题。
3、软件中心(ypkg)支持配置多个软件源。(重要)
4、软件中心支持安装本地 YPK 软件包(取代 ypki),自动安装依赖关系包。
4、新创建用户权限等其它 Bug 修复。
一、StartOS发布文件
&&&&& 1、发布文件为 Hybrid& ISO LiveCD 光盘镜像文件
&&&&& 2、仅提供 32位 ISO,系统针对 i686 优化
二、起点系统组件
&&&&&& 1、linux-kernel 3.4.6,加入 Aufs 补丁
&&&&&& 2、gcc 4.6.3
&&&&&& 3、glibc 2.14
&&&&&& 4、ffmpeg 0.11.1
&&&&&& 5、mesa 8.0.4
&&&&&& 6、X11R7.7,xorg-server 1.12.2
&&&&&& 7、systemd 44
&&&&&& 8、sqlite 3.7.13
&&&&&& 9、boost 1.50.0
&&&& 10、perl 5.14.0
&&&& 11、python 2.7.3
&&&& 12、cups 1.5.3
三、桌面环境
&&&& Gnome 2.32.1 定制版及其组件
四、集成软件:
&&&& 1、网页浏览器
&&&&&&&&&&& Chromium 20.0.1132.57,支持在线播放音视频
&&&& 2、视频播放器
&&&&&&&&& Mplayer 1.1
&&&&&&&&& Gnome-Mplayer 1.0.6,安装即支持 mkv、rmvb、avi 等常见视频格式
&&&& 3、办公套件
&&&&&&&&&&& Libre 3.6.0
&&&& 4、音乐播放器
&&&&&&&&& Deadbeef 0.5.5,安装即支持mp3、ape等常见音频格式
&&&& 5、图像浏览
&&&&&&&&&&&& 照片管理器 Shotwell 0.11.6
&&&&&&&&&&& 图片查看器 Viewnior 1.1
&&&& 6、输入法
&&&&&&&&&&& 小企鹅输入法 Fcitx 4.2.5、Fcitx-cloudpinyin 0.2.3
&&&& 7、刻录软件
&&&&&&&&& Brasero 2.32.1
&&&& 8、集成众多无线网卡驱动,支持 BCM、Ralink、RTL 等系列
&&&& 9、其它
&&&&&&&&&&& 蓝牙管理工具 Blueman 1.23
&&&&&&&&&&& 分区管理 Gparted 0.13.0&&&&&&
&&&&&&&&&&& 远程桌面客户端 Remmina 1.0.0
五、StartOS特色软件:
&&&& 1、菜单栏
&&&&&&&&& 简洁、功能丰富,智能管理应用程序,让您更快找到需要的应用,支持新安装软件高亮提示、收藏夹、最新使用等功能
&&&& 2、设备管理器
&&&&&&&&& 硬件信息详尽,一目了然;智能硬件驱动程序匹配,在线安装/更新硬件驱动;硬件性能评测
&&&& 3、软件包管理器
&&&&&&&&& 全新的 Ypk 包管理器,纯 C 编写,使用 Sqlite 存储软件包信息,速度更快、更稳定
&&&& 4、美观清爽的桌面主题、图标主题;鼠标主题和皮肤
&&&& 5、美观大气的 Plymouth 开机动画
&&&& 6、登录管理器 Lightdm、全新设计的登录欢迎界面和配置工具
&&&& 7、软件中心收录更丰富的常用软件、极速下载,在线安装,一键更新整个系统
&&&& 8、全新设计的安装工具,界面简洁,安装速度更快,最快安装仅需要 6 分钟!
&&&& 9、提供 Windows 下的安装工具,支持2种方式安装,不影响当前 Windows 系统,不再需要刻录光盘
&&&& 10、随系统附带一份详细的使用教程
版权声明:本站提的序列号、注册码、注册机、破解补丁等均来自互联网,仅供学习交流之用,请在下载后24小时内删除。
(您的评论需要经过审核才能显示,请文明发言!)&&剩余字数:
点击图片更换
起点操作系统StartOS 5.1 正式版
建议使用以上版本或、Firefox浏览器访问本站,获得更好的用户体验。Ubuntu下从二进制版安装MySQL 5.1 - 查看主题 & Ubuntu中文论坛
&[ 6 篇帖子 ]&
&文章标题 : Ubuntu下从二进制版安装MySQL 5.1发表于 :
23:52帖子: 2
送出感谢: 0 次
接收感谢: 0 次
本文是Ubuntu下第二篇(MySQ二进制篇)。MySQL、Sql Server、Oracle是三大主流数据库,MySQL也是LAMP安装配置中难度较大的,详细使用指南见英文官方手册,选择二进制分发版,可以避免很多错误的出现,性能方面也比自己源码编译要强。一、准备工作1.1、MySQL版本介绍MySQL 官方放出的版本比较多,但没有针对 ubuntu 的版本,所以只能选择二进制分发版和源码分发版,前者已经编译并经过优化了,后者没有。MySQL 二进制分发版的文件名格式为 mysql-VERSION-OS.tar.gz,其中 VERSION 是版本号(例如,5.1.51),OS表示分发版安装的操作系统类型(例如,linux-i686)。1.2、下载二进制分发版1. 系统环境:Ubuntu 10.102. 下载地址:/downloads/3. 最新稳定版:mysql-5.1.51-linux-i686-glibc23.tar.gz二、MySQL安装过程2.1、添加用户和组创建mysql组和mysql用户,该用户只需要在系统中存在,不需要登录,所以添加了 -r 选项。代码:sudo groupadd mysqlsudo useradd -r -g mysql mysql2.2、解压到指定目录代码:sudo tar -zxf mysql-5.1.51-linux-i686-glibc23.tar.gz -C /usr/local/sudo mv /usr/local/mysql-5.1.51-linux-i686-glibc23 /usr/local/mysqlcd /usr/local/mysql/2.3、屏蔽旧配置文件 (非常重要!!)代码:sudo mv /etc/f /etc/f.bak2.4、更改权限代码:sudo chown -R mysql .sudo chgrp -R mysql .2.5、初始化授权表安装MySQL之前,必须创建 MySQL 数据目录和初始化授权表,授权表定义了初始 MySQL 用户账户和访问权限。()代码:sudo scripts/mysql_install_db --user=mysql这一步可能出现很多错误,当出现错误后,删除date数据目录,重新再来,直到出现如下图提示。2.6、更改数据目录权限初始化授权表后会产生 date 目录,该目录所有者必须改为 mysql。代码:sudo chown -R root .sudo chown -R mysql data2.7、复制配置文件如果你不复制,MySQL 服务器将使用默认设置。代码:sudo cp support-files/f /etc/f2.8、启动MySQL服务mysqld_safe 是用来启动MySQL服务的,它比 mysqld 多了一些安全特性(),mysqld_safe 的许多选项与mysqld的相同()代码:sudo bin/mysqld_safe --user=mysql &注意:user参数和&符号必不可少,如果出现问题,见,直到如下图所示。三、安装后测试与启动3.1、检查MySQL服务首先确保MySQL服务已启动,方法见上面第二8条,能否成功启动关键在于mysql_install_db初始化授权表是否顺利,然后使用mysqladmin来验证MySQL服务。代码:bin/mysqladmin version //检查服务器版本bin/mysqladmin -u root shutdown //关闭服务器sudo bin/mysqld_safe --user=mysql --log & //启动服务器(不要漏了--log)bin/mysqlshow //列出所有数据库bin/mysqlshow mysql //列出mysql数据库中的所有表Ubuntu 中还可以使用检查进程的方法,查看MySQL是否启动代码:ps -A | grep mysql //查看mysql是否已经后台运行kill -9 进程号 //强制杀死进程3.2、自动启动和停止MySQL关于Ubuntu自动启动见,官方文档见。代码:sudo cp support-files/mysql.server /etc/init.d/mysqlcd /etc/init.dsudo chmod +x /etc/init.d/mysqlsudo update-rc.d mysql defaults四、MySQL账户安全设置官方文档见 (),简单来说就是修改匿名账户密码或者删除,设置root账户密码。4.1、检测MySQL账户情况代码:cd /usr/local/mysql/bin/mysql -u root -pmysql&SELECT User, Host, Password FROM mysql.4.2、设置root账户密码方法有三种,分别是:使用SET PASSWORD语句、使用UPDATE语句、使用mysqladmin命令行客户端程序。建议使用SET PASSWORD语句,因为mysqladmin虽然简单,但是是只能为localhost主机设置密码。4.2.1、使用mysqladmin设置密码代码:格式:mysqladmin -u 用户名 -p& password 新密码注:因为开始时root没有密码,所以-p一项就可以省略了。代码:cd /usr/local/mysql/bin/mysqladmin -u root -p password &123456&4.2.2、使用SET PASSWORD设置密码(推荐)代码:cd /usr/local/mysql/bin/mysql -u root -pmysql& SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456');mysql& SET PASSWORD FOR 'root'@'127.0.0.1' = PASSWORD('123456');mysql& SET PASSWORD FOR 'root'@'ubuntu' = PASSWORD('123456'); //ubuntu换为你的主机名4.3、删除匿名帐户代码:cd /usr/local/mysql/bin/mysql -u root -pmysql& DROP USER ''@'localhost';mysql& DROP USER ''@'ubuntu'; //ubuntu换为你的主机名五、结语结束了...被折腾了一整天,最大的感悟是:学习MySQL,神马Google搜索、百度一下都是浮云,最好得老师是英文官方手册(),网络那些不加验证的转载切莫再浏览!原文地址:
&文章标题 : Re: Ubuntu下从二进制版安装MySQL 5.1发表于 :
20:02帖子: 740
系统: Ubuntu 12.04
送出感谢: 0 次
我直接 sudo apt-get install mysql-server
_________________退避九舍:富贵不能淫,贫贱不能移,威武不能屈:坚持ubuntu不动摇!
&文章标题 : Re: Ubuntu下从二进制版安装MySQL 5.1发表于 :
10:31帖子: 8
接收感谢: 0 次
不错的文章,linux尤其是ubuntu下玩mysql实在是有点郁闷。折腾了好久
&文章标题 : Re: Ubuntu下从二进制版安装MySQL 5.1发表于 :
18:08帖子: 1
送出感谢: 0 次
接收感谢: 0 次
楼主神贴啊,我看了很多网上的关于MySQL的帖子,都说不清楚,MySQL官网上太复杂,也没有找到好的解决方法,特别是关于初始化授权表错误太多了。看到这里我才明白这里的错误可以解决啊。我安装的二进制版5.5.19
ubuntu 11.10
&文章标题 : Re: Ubuntu下从二进制版安装MySQL 5.1发表于 :
20:33帖子: 2
送出感谢: 0 次
接收感谢: 0 次
太感谢了,折腾了两天终于搞定了
&文章标题 : Re: Ubuntu下从二进制版安装MySQL 5.1发表于 :
18:26帖子: 5
送出感谢: 0 次
接收感谢: 0 次
终于安装成功了(mysql-5.5.20).感谢
显示帖子 : 全部帖子1天7天2周1个月3个月6个月1年&排序 作者发表时间文章标题 升序降序&
&[ 6 篇帖子 ]&
正在浏览此版面的用户:没有注册用户 和 0 位游客
您 不能 在这个版面发表主题您 不能 在这个版面回复主题您 不能 在这个版面编辑帖子您 不能 在这个版面删除帖子您 不能 在这个版面提交附件
选择一个版面
------------------
公告/注意事项
& &新闻和通知
& &校园社团支持
& && &华东校区
& && &华南校区
& && &华北校区
& && &华中校区
& && &东北校区
& && &西北校区
& && &港澳台校区
& && &国外校区
& &软件推荐
& &非常任务
系统安装区
& &教学和常见问答
& && &课堂教学和培训
& &初学者园地 - 16.04
& &系统安装和升级
& && &新立得和软件源
& && &Wubi安装讨论
& &启动和引导
& &网卡问题以及网络和拨号
& && &校园网拨号
& &笔记本、UMPC支持
& &手机和平板
& && &Ubuntu移动应用开发
& &常用硬件支持
& &系统架构支持
配置美化区
& &字体美化和中文支持
& && &个人配置文件存放点
& &桌面特效
& &窗口管理器
& &屏幕抓图
& &办公、图像、机械电子设计等
& && &Vim和Emacs
& &因特网相关软件
& &影音多媒体
& &Wine及其分支
& &游戏和游戏模拟器
& &虚拟机和虚拟化
& &其它类软件
& &开源模板库
服务器管理
& &服务器基础应用
& &数据库管理
& &服务器维护和硬件相关
& &Ubuntu VPS
参与Ubuntu开发
& &软件和文档翻译
& &编译或打包
& &Ubuntu错误报告
程序设计区
& &Shell脚本
& &GTK+和QT
& &软件/网站开发
& && &Python/Php/Perl
& && &C/C++/Java
& &内核及嵌入式开发
& &开源小工具
& &Ubuntu 16.10
& &Ubuntu 14.04 LTS
& &Ubuntu 12.04 LTS
& &Ubuntu 10.04 LTS
& &老旧版本支持
& && &Ubuntu 15.10
& && &Ubuntu 15.04
& && &Ubuntu 14.10
衍生发行版
& &Ubuntu GNOME
& &Kubuntu
& &Xubuntu & Lubuntu
& &Ubuntu中文衍生版
& && &UbuntuKylin
& &Ubuntu国外衍生版
& && &Mint
& &Ubuntu衍生版制作
& &其它类Unix OS发行版
& && &Arch发行版
& && &Debian发行版
& && &OpenSUSE发行版
& && &Deepin
& &深度PK版
& &Ubuntu故事和感慨
& &Full Circle开源杂志
分享交流区
& &同城交流
& &线下活动专版
& &Ubuntu宣传推广
& &论坛管理
& && && &Ubuntu中文网上商店}

我要回帖

更多关于 pkg文件安装后找不到 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信