BSD2012. 9. 14. 20:39

우분투 트윅을 이용하면 창의 버튼을 왼쪽에서 오른쪽으로 옮길 수 있다.


sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak
ubuntu-tweak& 



Posted by 쿨한넘
BSD2012. 9. 7. 00:39
zypper가 있네. 잘 써보자.
cnf 명령어도 빼놓을 수 없고.

문제가 있긴한데, 좀 더 써보고 싶긴하다. openSUSE. 궁합이 안맞나.



Posted by 쿨한넘
BSD2012. 9. 7. 00:19

다운로드는 제대로 되는데, 인스톨이 안된다.

터미널에서 다음을 입력해서 인스톨하였다.


sudo dpkg --install google-chrome-stable_current_i386.deb



'BSD' 카테고리의 다른 글

FreeBSD Gnome port 설치시 로그인창 안보일 때  (0) 2012.09.20
ubuntu tweak 설치하기  (0) 2012.09.14
ubuntu에 apt-get 이 있다면, openSUSE 에는  (0) 2012.09.07
Posted by 쿨한넘
카테고리 없음2012. 7. 3. 15:33


/*	Blink
  Turns on an LED on for one second,
	then off for one second, repeatedly.

	This example code is in the public domain.

*/



#include "Arduino.h"



void setup();

void loop();



// Pin 13 has an LED connected on most Arduino boards.

// give it a name:


unsigned char led = 13;



// the setup routine runs once when you press reset:


void setup()
{                
  // initialize the digital pin as an output.

	pinMode(led, OUTPUT);

}



// the loop routine runs over and over again forever:


void loop()
{

	delayMicroseconds(10);

	digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)

	delay(1000);               // wait for a second
  digitalWrite(led, LOW);

	// turn the LED off by making the voltage LOW


	delay(1000);               // wait for a second

}


Posted by 쿨한넘