ubuntu的学习
雪昙花
孤独中的寂寞,寂寞中的雪色,雪色中的昙花
展开
-
ubuntu中apache的安装
apache2的安装sudo apt-get install apache2apache2的启动,停止和重启sudo /etc/init.d/apache2 stopsudo /etc/init.d/apache2 startsudo /etc/init.d/apache2 restart配置文件一般是在etc/apache2/apache2.conf原创 2016-05-18 14:06:11 · 229 阅读 · 0 评论 -
远程访问linux主机
系统安装好后,只有安装了openssl-client端,可以用dpkg -s openssl-client查看没有安装服务端,因此需要先安装服务端sudo apt-get install openssl-server重启下服务/etc/init.d/ssh restart如何还是不行,一直提示输入密码修改配置文件/etc/ssh/sshd_config原创 2017-03-03 15:15:53 · 361 阅读 · 0 评论 -
ubuntu的root初始秘密的修改
ubuntu安装好以后,root密码是随即的,要先修改进入命令窗口(ctrl+alt+t)sudo passwd输入密码su root //切换用户原创 2016-05-18 11:35:35 · 425 阅读 · 0 评论 -
ubuntu 搜狗输入法的安装
getconf LONG_BIT查看系统是几位的在官网下载文件(我的32位)sogoupinyin_2.0.0.0072_i386.deb 添加依赖包sudo add-apt-repository ppa:fcitx-team/nightly更新下软件sudo apt-get update安装这个依赖 sudo apt-get install fci原创 2016-05-20 15:07:02 · 210 阅读 · 0 评论 -
ubuntu sublime text的安装
添加sublime text 3的仓库:sudo add-apt-repository ppa:webupd8team/sublime-text-3更新软件库:sudo apt-get update 安装Sublime Text 3:sudo apt-get install sublime-text-installer原创 2016-05-19 17:45:42 · 201 阅读 · 0 评论 -
ubuntu 虚拟主机的建立
1建立项目目录sudo mkdir /var/www/tppg2,设置所有者sudo chown -R $USER:$USER /var/www/tppg/($USER代表当前用户)3,设置权限sudo chmod -R 755 /var/www/4apache2添加配置文件sudo cp /etc/apache2/sites-available/000-de原创 2016-05-19 16:49:10 · 259 阅读 · 0 评论 -
ubuntu postgresql的安装与配置
sudo apt-get install postgresqlpostgresql的管理工具软件sudo apt-get install pgadin3环境配置修改PostgreSQL数据库的默认用户postgres的密码 (不是ubuntu系统帐号)//PostgreSQL登录(使用psql客户端登录)sudo -u postgres p原创 2016-05-19 13:43:52 · 308 阅读 · 0 评论 -
ubuntu 软件安装查看的常用命令
apt-cache search # ------(package 搜索包)apt-cache show #------(package 获取包的相关信息,如说明、大小、版本等)apt-get install # ------(package 安装包)apt-get install # -----(package --reinstall 重新安装包)apt-get -f insta原创 2016-05-19 13:42:46 · 373 阅读 · 0 评论 -
ubuntu虚拟中与外机的共享
先安装vm-tootls1,虚拟机-->安装vm-tools2,把相关文件(tar文件)放到自己虚拟系统中的tmp,3解压tools文件4,./vmware-install.pl5,重启系统虚拟机中的设置选择虚拟机-设置-选项-共享文件夹-添加-设置目录-名字虚拟中的系统配置sudo mount -t vmhgfs .host:/原创 2016-05-19 11:29:07 · 207 阅读 · 0 评论 -
crontab 定时任务
crontab 执行php两种方式,一种cli模式,一种apache模式,根据php环境自己搞,目前只搞了apacheapache模式:命令:crontab -e (执行命令编辑)例如:每5分钟执行某个php文件*/5 * * * * lynx -dump http://域名.com/test.phpctrl+x(保存)lynx没有安装的话,使用apt-get原创 2017-09-28 08:51:46 · 248 阅读 · 0 评论