第一种方法:按“Ctrl+Alt+T”即可打开终端窗口
第二种方法,按“Ctrl+Alt+F1-F6”均可进入终端。
第三种,搜索终端并进入。
注意事项
如果采用了F1-F6的方法,返回图形界面只要按“Ctrl+Alt+F7即可”
Linux是一种自由和开放源码的类Unix *** 作系统,存在着许多不同的Linux版本,但它们都使用了Linux内核。
Linux可安装在各种计算机硬件设备中,比如手机、平板电脑、路由器、视频游戏控制台、台式计算机、大型机和超级计算机。
Linux是一个领先的 *** 作系统,世界上运算最快的10台超级计算机运行的都是Linux *** 作系统
。严格来讲,Linux这个词本身只表示Linux内核,但实际上人们已经习惯了用Linux来形容整个基于Linux内核,并且使用GNU 工程各种工具和数据库的 *** 作系统。
(1) 进入mysql控制台,直接输入mysql命令即可,如下。# mysql
(2) 启动mysql: 进入mysql控制的前提是保证mysql服务启动,如下命令可以启动mysql
# /etc/init.d/mysqld start
其它的mysql数据库相关的 *** 作如下
(1) 创建数据库TestDB
mysql>create database TestDB
(2) 制定TestDB数据库为当前默认数据库
mysql>use TestDB
(3) 在TestDB数据库中创建表customers
mysql>create table customers(userid int not null, username varchar(20) not null)
(4) 显示数据库列表
mysql>show databases
(5)显示数据库中的表
mysql>show tables
(6)删除表customers
mysql>drop table customers
(7)显示customers表的结构
mysql>desc customers
(8) 向customers表中插入一条记录
mysql>insert into customers(userid, username) values(1, 'hujiahui')
(9) 让 *** 作及时生效
mysql>commit
(10) 查询customers中的记录
mysql>select * from customers
(11) 更新表中的数据
mysql>update customers set username='DennisHu' where userid=1
(12) 删除表中的记录
mysql>delete from customers
(13)授予hjh用户访问数据库的权限
# grant select, insert, update, delete on *.* to hjh@localhost indentified by "123456"
备注:hjh是Linux用户名,123456是访问mysql的密码
(14)采用用户名和密码登录mysql
# mysql -uhjh -p123456
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)