2010. 8. 27. 14:06
1. 계정없이 루트권한만 얻어서 사용할 경우
$ sudo -s
2. su - 명령어로 직접 루트 계정 얻을 경우
$ sudo passwd root
비번입력
$ su -
로 접속 후 비번입력 접속
$ sudo -s
2. su - 명령어로 직접 루트 계정 얻을 경우
$ sudo passwd root
비번입력
$ su -
로 접속 후 비번입력 접속
'Linux > Ubuntu' 카테고리의 다른 글
우분투 apt-get 서버 변경하기 (0) | 2011.05.12 |
---|---|
우분투 java 설치 (0) | 2011.05.07 |
Ubuntu Mysql 설치 및 설정 (0) | 2010.08.25 |
Ubuntu Mysql 사용 (0) | 2010.08.25 |
Ubuntu vsftpd 설치 (0) | 2010.08.25 |
2010. 8. 26. 15:41
1. 수정(주석 처리)
# sudo vi /etc/mysql/my.conf
bind-address 주석처리
2. 외부 접속 계정 만들기
mysql> grant all privileges on 디비이름.* to 아이디@'%' identified by '비번' with grant option
3. 재시작
# sudo /etc/init.d/mysql restart
2010. 8. 26. 13:26
How to proceed
Once the slideshow done, go to Tools > Macro > Visual Basic Editor.In the opened window, select Insert > Module and copy the below text in the blank page:
Sub AddProgressBar()
On Error Resume Next
With ActivePresentation
For X = 1 To .Slides.Count
.Slides(X).Shapes("PB").Delete
Set s = .Slides(X).Shapes.AddShape(msoShapeRectangle, 0, .PageSetup.SlideHeight - 12,
X * .PageSetup.SlideWidth / .Slides.Count, 12)
s.Fill.ForeColor.RGB = RGB(127, 0, 0)
s.Name = "PB"
Next X:
End With
End Sub
Then go to File > Close > Return to Microsoft PowerPoint .
In the displayed page of Microsoft Powerpoint, go to:
Tools > Macro >Macros, then select AddProcessBar and select Execute to achieve this process.
출저 - http://kwangmin.egloos.com/5337340
'Tip' 카테고리의 다른 글
노트북을 무선 AP(WI-FI)로 만들기. (0) | 2014.10.27 |
---|---|
[Tool]이클립스 자동빌드가 안될때 조치 방법 (7) | 2013.08.06 |
[HTML]테이블 TD 텍스트 길이 고정하기 (1) | 2013.04.08 |
[Tool]이클립스 Subversion(svn) checkout시 한글 깨짐 현상. 언어 인코딩 설정. (0) | 2011.05.12 |