- Today
- Total
- 라즈베리파이
- ContextMenuStrip
- RaspberryPi
- 동영상 오류
- Ribbon
- UltraToolbarsManager
- Raspberry Pi
- Spread
- OpenFileDialog
- c#
- ubuntu
- onPageFinished
- Image icon 변환
- ImageList Icon 변환
- mp4 재생
- ScrollBarTrackPolicy
- OSHP
- <<<<<<<<
- startActivity
- node.js 설치
- usb 인식 불가
- mariaDB 설치
- 자동 닫힘
- node.js
- MariaDB
- .mine
- 라즈베리 피이
- mariaDB 외부접속
- 다중 Filter
- WebViewClient
목록ubuntu (3)
Realman's World
mysql -u root -p [mariaDB prompt] create database test; use test; create user 'testuser'@'localhost' identified by '1q2w3e'; create user 'testuser'@'%' identified by '1q2w3e'; -> 외부접속시 %로 설정 grant all privileges on test.* to 'testuser'@'localhost'; grant all privileges on test.* to 'testuser'@'%'; flush privileges; exit sudo vi /etc/mysql/my.cnf #bind-address = 127.0.0.1 -> 주석 처리 mariaDB 실행 후 외부..
sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db Ubuntu 14.10 “utopic” . sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu utopic main' Ubuntu 14.04 “trusty” . sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu trusty main' Ubuntu 12.04 LTS “precise” . sud..
1. apt-get update sudo apt-get update 2. 자바 설치 sudo apt-get install openjdk-7-jdk 3. ssh 설정 sudo apt-get install sshssh-keygen -t rsa -P ""cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys * ssh: connect to host localhost port 22: Connection refused 오류 발생시/etc/init.d/sshd restart (OR start)* 참조 : http://ubuntuforums.org/showthread.php?t=1914246 4. node.js 설치 sudo apt-get install nodejssudo..