2009년 1월 26일 월요일

Ubuntu 에서 프로그램 다운로드 할때...

뭐.. 강좌라구도 할수 없는 기본이다...

환경, 전 우분투, 에서 한거 입니다...

 

처음 SSH/터미널을 키면....

 

~user@이름 $  << 나온다...

 

거기에서, 예를 들어, irssi 를 다운로드 해서 인스톨하구 싶으면,

터미널/SSH 창에..

 

apt-get install irssi << 하면.. 된다....

그럼, /etc/irssi.conf 가 생긴다, 아니면, /home/유저/irssi 가 생긴다,

거기들어가면, irssi.conf 가있다... 거기서 설정을 바꾸어 주면된다...

 

기본설정은...

 

servers = (
  { address = "irc.ubuntu.com"; chatnet = "Ubuntu"; port = "6667"; },
  { address = "irc.stealth.net"; chatnet = "IRCnet"; port = "6668"; },
  { address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
  {
    address = "irc.undernet.org";
    chatnet = "Undernet";
    port = "6667";
  },
  { address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
  {
    address = "irc.quakenet.org";
    chatnet = "QuakeNet";
    port = "6667";
  },
  { address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; }
);

chatnets = {
  IRCnet = {
    type = "IRC";
    max_kicks = "4";
    max_msgs = "5";
    max_whois = "4";
    max_query_chans = "5";
  };
  EFNet = {
    type = "IRC";
    max_kicks = "4";
    max_msgs = "3";
    max_whois = "1";
  };
  Undernet = {
    type = "IRC";
    max_kicks = "1";
    max_msgs = "3";
    max_whois = "30";
  };
  DALnet = {
    type = "IRC";
    max_kicks = "4";
    max_msgs = "3";
    max_whois = "30";
  };
  QuakeNet = {
    type = "IRC";
    max_kicks = "1";
    max_msgs = "3";
    max_whois = "30";
  };
  SILC = { type = "SILC"; };
  Ubuntu = { type = "IRC"; };
};

channels = (
  { name = "#irssi"; chatnet = "ircnet"; autojoin = "No"; },
  { name = "silc"; chatnet = "silc"; autojoin = "No"; }
);

aliases = {
  J = "join";
  WJOIN = "join -window";
  WQUERY = "query -window";
  LEAVE = "part";
  BYE = "quit";
  EXIT = "quit";
  SIGNOFF = "quit";
  DESCRIBE = "action";
  DATE = "time";
  HOST = "userhost";
  LAST = "lastlog";
  SAY = "msg *";
  WI = "whois";
  WII = "whois $0 $0";
  WW = "whowas";
  W = "who";
  N = "names";
  M = "msg";
  T = "topic";
  C = "clear";
  CL = "clear";
  K = "kick";
  KB = "kickban";
  KN = "knockout";
  BANS = "ban";
  B = "ban";
  MUB = "unban *";
  UB = "unban";
  IG = "ignore";
  UNIG = "unignore";
  SB = "scrollback";
  UMODE = "mode $N";
  WC = "window close";
  WN = "window new hide";
  SV = "say Irssi $J ($V) - http://irssi.org/";
  GOTO = "sb goto";
  CHAT = "dcc chat";
  RUN = "SCRIPT LOAD";
  CALC = "exec - if which bc &>/dev/null\\; then echo '$*' | bc | awk '{print \"$*=\"$$1}'\\; else echo bc was not found\\; fi";
  SBAR = "STATUSBAR";
  INVITELIST = "mode $C +I";
  Q = "QUERY";
  "MANUAL-WINDOWS" = "set use_status_window off;set autocreate_windows off;set autocreate_query_level none;set autoclose_windows off;set reuse_unused_windows on;save";
  EXEMPTLIST = "mode $C +e";
  ATAG = "WINDOW SERVER";
};

statusbar = {
  # formats:
  # when using {templates}, the template is shown only if it's argument isn't
  # empty unless no argument is given. for example {sb} is printed always,
  # but {sb $T} is printed only if $T isn't empty.

  items = {
    # start/end text in statusbars
    barstart = "{sbstart}";
    barend = "{sbend}";

    topicbarstart = "{topicsbstart}";
    topicbarend = "{topicsbend}";

    # treated "normally", you could change the time/user name to whatever
    time = "{sb $Z}";
    user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}";

    # treated specially .. window is printed with non-empty windows,
    # window_empty is printed with empty windows
    window = "{sb $winref:$tag/$itemname{sbmode $M}}";
    window_empty = "{sb $winref{sbservertag $tag}}";
    prompt = "{prompt $[.15]itemname}";
    prompt_empty = "{prompt $winname}";
    topic = " $topic";
    topic_empty = " Irssi v$J - http://irssi.org/help/";

    # all of these treated specially, they're only displayed when needed
    lag = "{sb Lag: $0-}";
    act = "{sb Act: $0-}";
    more = "-- more --";
  };

  # there's two type of statusbars. root statusbars are either at the top
  # of the screen or at the bottom of the screen. window statusbars are at
  # the top/bottom of each split window in screen.
  default = {
    # the "default statusbar" to be displayed at the bottom of the window.
    # contains all the normal items.
    window = {
      disabled = "no";

      # window, root
      type = "window";
      # top, bottom
      placement = "bottom";
      # number
      position = "1";
      # active, inactive, always
      visible = "active";

      # list of items in statusbar in the display order
      items = {
        barstart = { priority = "100"; };
        time = { };
        user = { };
        window = { };
        window_empty = { };
        lag = { priority = "-1"; };
        act = { priority = "10"; };
        more = { priority = "-1"; alignment = "right"; };
        barend = { priority = "100"; alignment = "right"; };
      };
    };

    # statusbar to use in inactive split windows
    window_inact = {
      type = "window";
      placement = "bottom";
      position = "1";
      visible = "inactive";
      items = {
        barstart = { priority = "100"; };
        window = { };
        window_empty = { };
        more = { priority = "-1"; alignment = "right"; };
        barend = { priority = "100"; alignment = "right"; };
      };
    };

    # we treat input line as yet another statusbar :) It's possible to
    # add other items before or after the input line item.
    prompt = {
      type = "root";
      placement = "bottom";
      # we want to be at the bottom always
      position = "100";
      visible = "always";
      items = {
        prompt = { priority = "-1"; };
        prompt_empty = { priority = "-1"; };
        # treated specially, this is the real input line.
        input = { priority = "10"; };
      };
    };

    # topicbar
    topic = {
      type = "root";
      placement = "top";
      position = "1";
      visible = "always";
      items = {
        topicbarstart = { priority = "100"; };
        topic = { };
        topic_empty = { };
        topicbarend = { priority = "100"; alignment = "right"; };
      };
    };
  };
};
settings = {
  core = {
    real_name = "";
    user_name = "user";
    nick = "user";
  };
  "fe-text" = { actlist_sort = "refnum"; };
};

이렇게 되있다...

 

여기에서,

 

아래에 첨부된 부분만 수정해주면 된다...

 

servers = (
{
    address = "irc.hanirc.org";
    chatnet = "HanIRC";
    port = "6667";
    autoconnect = "yes";
  },
  { address = "iz4u.hanirc.org"; chatnet = "HanIRC"; port = "8080"; },
  {
    address = "holywar.hanirc.org";
    chatnet = "HanIRC";
    port = "6664";
  }
);

chatnets = {
  HanIRC = {
    type = "IRC";
    autosendcmd = "/mode $N +iwxg;
/^msg chanserv auth #채널 아이디 비번;";
  };
};

channels = (
  { name = "#자동조인 할 채널1"; chatnet = "HanIRC"; autojoin = "Yes"; },
  { name = "#자동조인 할 채널2"; chatnet = "HanIRC"; autojoin = "YES"; },
  {
    name = "#m";
    chatnet = "HanIRC";
    autojoin = "No";
    password = "passwd";
  },
  {
    name = "#Channel_04";
    chatnet = "HanIRC";
    autojoin = "No";
    password = "passwd";
  }
);

 

settings = {
  core = {
    real_name = "Irssi";
    user_name = "유져이름";
    nick = "닉네임";
  };

댓글 187개:

  1. 비밀 댓글 입니다.

    답글삭제
  2. inch; http://thepattycurtisclubhouse.com/ sildenafil citrate; http://weavingthetruth.com cigarettes; http://theperfectblack.com/ baclofen; http://designbysisters.com/ zimulti; http://10858portofino.com/ acomplia;

    답글삭제
  3. half; http://themaplesfamily.com/ cafergot; http://wizewaysbooks.com buy cigarettes; http://komdumed.com/ diflucan during pregnancy; http://designbysisters.com/ slimona; http://lastthreelives.com/ celexa; http://egypt-rowing.com/ rimonabant diet pill;

    답글삭제
  4. comment4 <a href=" http://mostafawi.com/cp/Scripts/596/wankingtube246.html ">Wankingtube</a> xusqip <a href=" http://stylessalonandspa.com/cp/Scripts/171/non-hybrid-vegetable-seeds138.html ">Non Hybrid Vegetable Seeds</a> >:-PPP <a href=" http://mdwellandseptic.com/cp/scripts/023/weekly-bikin162.html ">Weekly Bikin</a> %-DD <a href=" http://printerbitch.com/images/icons/806/cryptosporidium230.html ">Cryptosporidium</a> 11462 <a href=" http://harrenhal.net/joomla/templates/417/computer-consulting-kit-club76.html ">Computer Consulting Kit Club</a> yvun <a href=" http://kathleensmithcpa.com/cp/Scripts/504/spanish-english-translation77.html ">Spanish English Translation</a> 824466 <a href=" http://groverpatrick.com/aspnet_client/system_web/01/birth-videos63.html ">Birth Videos</a> 8[[[ <a href=" http://stcgservices.com/cp/scripts/86/surveillance-equipment247.html ">Surveillance Equipment</a> 072 <a href=" http://altalaea.com/cp/Scripts/913/anniversary-poems214.html ">Anniversary Poems</a> 708 <a href=" http://blueott.com/cp/images/17/miele-cat-and-dog0.html ">Miele Cat And Dog</a> yczz <a href=" http://kathleensmithcpa.com/cp/Scripts/504/cube-3-movie11.html ">Cube 3 Movie</a> :((

    답글삭제
  5. comment3 <a href=" http://qrpcinc.com/aspnet_client/system_web/60/constitutional-rights173.html ">Constitutional Rights</a> 42327 <a href=" http://ankatekiletisim.com/libraries/phpinputfilter/34/super-bowl-xxxv-commercial37.html ">Super Bowl Xxxv Commercial</a> %) <a href=" http://lgmeyer.com/images/icons/182/shakeela143.html ">Shakeela</a> 8-]] <a href=" http://realestateinspectionsva.com/aspnet_client/system_web/41/hydroxycut272.html ">Hydroxycut</a> =[[ <a href=" http://teakgeeks.com/cp/images/702/stained-glass107.html ">Stained Glass</a> fsbom <a href=" http://stskoruma.net/images/icons/662/motiva140.html ">Motiva</a> 494498 <a href=" http://elcerroazul.com/images/icons/45/kg-to-lb-conversion257.html ">Kg To Lb Conversion</a> 31705 <a href=" http://powhatanskincare.com/aspnet_client/system_web/63/nascar-hats267.html ">Nascar Hats</a> 83675 <a href=" http://theteachersaidepowhatan.com/aspnet_client/system_web/013/lesbian-pussys175.html ">Lesbian Pussys</a> 238 <a href=" http://evdenevenakliyat-ankara.com/libraries/phpinputfilter/24/history-of-bobby-fischer225.html ">History Of Bobby Fischer</a> 469411 <a href=" http://patrickhome.net/aspnet_client/system_web/06/penis-bot60.html ">Penis Bot</a> oxwx

    답글삭제
  6. comment1 <a href=" http://thebottomlineofprotection.com/images/icons/609/robert-earl-keen30.html ">Robert Earl Keen</a> 23226 <a href=" http://furry-godmothers.com/old-images/icons/121/pandemos259.html ">Pandemos</a> ilgrvi <a href=" http://wftelectronics.com/images/icons/255/flat-chested-teens8.html ">Flat Chested Teens</a> xsiov <a href=" http://sysrand.com/images/icons/523/facts-about-alcohol249.html ">Facts About Alcohol</a> ckrazi <a href=" http://tripointonline.com/cp/images/527/dreambook-tied-up194.html ">Dreambook Tied Up</a> >:-)) <a href=" http://ccscjo.com/aspnet_client/system_web/425/davey-jones-costume101.html ">Davey Jones Costume</a> 620 <a href=" http://freelineinterior.com/cp/Scripts/378/practice-aptitude-test157.html ">Practice Aptitude Test</a> 688253 <a href=" http://thearcadecafe.com/aspnet_client/system_web/871/samantha-anderson311.html ">Samantha Anderson</a> 2361 <a href=" http://sedansigorta.com/basvurular/_notes/02/tropicana-hotel-casino-las-vegas154.html ">Tropicana Hotel Casino Las Vegas</a> 0941

    답글삭제
  7. comment1 <a href=" http://shealyelectricco.com/aspnet_client/system_web/89/thalasemia121.html ">Thalasemia</a> =-PPP <a href=" http://bobloganphotography.com/cp/Scripts/06/jaimee-foxworth-video235.html ">Jaimee Foxworth Video</a> >:-P <a href=" http://datafrontline.org/images/icons/84/tempe-improv226.html ">Tempe Improv</a> cqosk <a href=" http://realestateinspectionsva.com/aspnet_client/system_web/41/ms-frontpage-2003210.html ">Ms Frontpage 2003</a> 931842 <a href=" http://theteachersaidepowhatan.com/aspnet_client/system_web/013/photos-of-female-soldiers-shower94.html ">Photos Of Female Soldiers Shower</a> 998 <a href=" http://radmi.com/cp/images/152/free-milf-video168.html ">Free Milf Video</a> jcfkf <a href=" http://badhd.net/cp/scripts/828/boysfoodcom103.html ">Boysfoodcom</a> 812976 <a href=" http://thecountyseat.com/cp/Scripts/396/angle113.html ">Angle</a> 804 <a href=" http://ubercodeninja.com/cp/scripts/61/st-regis-hotel-new-york-city94.html ">St Regis Hotel New York City</a> :[[[

    답글삭제
  8. comment5 <a href=" http://eknotsties.com/cp/scripts/76/pretty-youngs207.html ">Pretty Youngs</a> 425329 <a href=" http://bring-the-funk.com/images/thumbs/075/nc-state-park36.html ">Nc State Park</a> 636783 <a href=" http://ozdikmentemizlik.com/images/icons/93/international-driving-directions279.html ">International Driving Directions</a> >:) <a href=" http://goldensandsre.com/cp/Scripts/289/patti-page129.html ">Patti Page</a> xod <a href=" http://cinternational.com/robsitch-castle/rs-images/55/cute-13135.html ">Cute 13</a> >:[[[ <a href=" http://autocobe.com/images/icons/98/dictonary257.html ">Dictonary</a> =OOO <a href=" http://ozdikmentemizlik.com/images/icons/93/puffy-aerola65.html ">Puffy Aerola</a> %-[[[ <a href=" http://photographerzlata.com/children/popup/83/apollo-13-mission175.html ">Apollo 13 Mission</a> rthku <a href=" http://dcpdesign.net/cp/images/864/orion-telescopes114.html ">Orion Telescopes</a> zkox <a href=" http://imagesnow.info/aspnet_client/system_web/77/tullian-tchividjian42.html ">Tullian Tchividjian</a> :-[

    답글삭제
  9. comment3 <a href=" http://radmi.com/cp/images/152/slightly-stoopid124.html ">Slightly Stoopid</a> :P <a href=" http://balaybuilders.com/docs/_vti_cnf/642/14-year-old161.html ">14 Year Old</a> baxtge <a href=" http://ozdikmentemizlik.com/images/icons/93/pellet-stoves154.html ">Pellet Stoves</a> ecbahk <a href=" http://susannajoy.com/images/icons/09/erectile-disfunction184.html ">Erectile Disfunction</a> %PPP <a href=" http://boutiquerumbera.com/cp/images/82/it-degree-online258.html ">It Degree Online</a> %DDD <a href=" http://299webdesign.com/cp/images/575/patricia-benner34.html ">Patricia Benner</a> %[ <a href=" http://datafrontline.net/aspnet_client/system_web/847/dulce-et-decorum-est180.html ">Dulce Et Decorum Est</a> pnx <a href=" http://groverpatrick.com/aspnet_client/system_web/01/sylvia-likens-autopsy-photos214.html ">Sylvia Likens Autopsy Photos</a> 625254

    답글삭제
  10. comment4 <a href=" http://newtrontec.com/cp/Scripts/74/northern-flicker203.html ">Northern Flicker</a> zhglqv <a href=" http://visitgoochland.com/cp/Scripts/28/small-house-plans208.html ">Small House Plans</a> lfw <a href=" http://zeytincioglu.com/cp/images/18/city-of-murfreesboro-tn121.html ">City Of Murfreesboro Tn</a> 928 <a href=" http://299webdesign.com/cp/images/575/enema-forums148.html ">Enema Forums</a> 8-( <a href=" http://lost-media.info/engine/ajax/86/ncaa-football-2010100.html ">Ncaa Football 2010</a> awtp <a href=" http://allhotscripts.com/alexa/proxy/533/american-red-cross137.html ">American Red Cross</a> 6531 <a href=" http://vaponds.com/cp/Scripts/19/rube-goldberg91.html ">Rube Goldberg</a> 7007 <a href=" http://oemagents.com/cp/images/467/monster-bull211.html ">Monster Bull</a> wzv

    답글삭제
  11. comment2 <a href=" http://eastcoastbikerscruise.com/files/filecabinet/87/natural-diuretics171.html ">Natural Diuretics</a> sgql <a href=" http://kanyendavis.com/cp/images/512/new-ards-treatment239.html ">New Ards Treatment</a> prjafe <a href=" http://redknightsmd2.org/cp/scripts/81/zootube-365199.html ">Zootube 365</a> 8-P <a href=" http://kalsigorta.com/cp/scripts/47/crows204.html ">Crows</a> mzazq <a href=" http://bobloganphotography.com/cp/Scripts/06/what-affect-does-alcohol-have-on-a-person181.html ">What Affect Does Alcohol Have On A Person</a> dtuode <a href=" http://balgoandkaminski.com/images/icons/592/memorial-hermann-hospital83.html ">Memorial Hermann Hospital</a> avq <a href=" http://sysrand.com/images/icons/523/cinque-terre-pictures56.html ">Cinque Terre Pictures</a> 004237 <a href=" http://hirerightt.com/cp/Scripts/69/carnegie-mellon-university260.html ">Carnegie Mellon University</a> 499549

    답글삭제
  12. comment6 <a href=" http://jennypatrick.com/aspnet_client/system_web/191/nokia-3390-ringing-tones157.html ">Nokia 3390 Ringing Tones</a> 336 <a href=" http://atacag.com/plugins/search/497/hairstyles-for-homecoming134.html ">Hairstyles For Homecoming</a> %OO <a href=" http://ankatekbilisim.com/cp/scripts/778/how-long-does-shipping-overseas216.html ">How Long Does Shipping Overseas</a> xaowka <a href=" http://pure-pod.com/images/icons/95/t-girls14.html ">T Girls</a> uepj <a href=" http://ozbesleras.com/cp/images/770/peoples-bank219.html ">Peoples Bank</a> 20146 <a href=" http://blingitup.com/images/icons/29/build-your-own-log-cabin47.html ">Build Your Own Log Cabin</a> 998 <a href=" http://harrenhal.net/joomla/templates/417/lg-shine-plastic-case240.html ">Lg Shine Plastic Case</a> pba <a href=" http://dreamfucker.org/images/icons/505/micheal-jordan-hall-of-fame-speech228.html ">Micheal Jordan Hall Of Fame Speech</a> :))) <a href=" http://slashley.com/images/icons/684/government-jobs120.html ">Government Jobs</a> 8O

    답글삭제
  13. @Anonymous - 2009/09/03 17:04
    Help me please , <a href=" http://towboatusindianriver.com/cp/scripts/816/rhabdomyolysis78.html ">Rhabdomyolysis</a> , >:-DDD , <a href=" http://stylessalonandspa.com/cp/Scripts/171/non-hybrid-vegetable-seeds138.html ">Non Hybrid Vegetable Seeds</a> , 4076 , <a href=" http://nathanlouisgordon.com/images/icons/01/california-cash-out17.html ">California Cash Out</a> , vxigm , <a href=" http://davidsearcy.com/cp/Scripts/349/gaytube-like-sites108.html ">Gaytube Like Sites</a> , 451625 , <a href=" http://discovergoochland.com/aspnet_client/system_web/96/private-pictures-of-my-wife163.html ">Private Pictures Of My Wife</a> , 9407 , <a href=" http://bannersandmore.org/cp/scripts/97/vogue-cover89.html ">Vogue Cover</a> , 468108 , <a href=" http://brokenbog.com/cp/scripts/432/wireless-mouse-how-to208.html ">Wireless Mouse How To</a> , 8((( , <a href=" http://jtedmcc.com/cp/Scripts/16/pelican104.html ">Pelican</a> , 8)) , <a href=" http://aroosalbahar.com/cp/Scripts/925/object-insertion215.html ">Object Insertion</a> , 154909 , <a href=" http://rosaspizzarestaurant.com/aspnet_client/system_web/443/your-welcome-in-spanish19.html ">Your Welcome In Spanish</a> , fcg ,

    답글삭제
  14. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  15. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  16. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  17. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  18. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  19. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  20. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  21. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  22. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  23. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  24. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  25. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  26. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  27. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  28. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  29. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  30. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  31. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  32. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  33. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  34. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  35. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  36. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  37. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  38. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  39. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  40. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  41. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  42. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  43. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  44. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  45. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  46. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  47. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  48. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  49. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  50. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  51. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  52. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  53. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  54. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  55. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  56. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  57. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  58. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  59. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  60. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  61. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  62. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  63. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  64. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  65. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  66. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  67. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  68. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  69. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  70. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  71. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  72. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  73. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  74. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  75. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  76. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  77. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  78. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  79. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  80. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  81. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  82. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  83. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  84. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  85. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  86. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  87. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  88. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  89. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  90. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  91. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  92. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  93. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  94. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  95. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  96. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  97. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  98. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  99. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  100. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  101. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  102. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  103. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  104. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  105. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  106. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  107. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  108. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  109. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  110. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  111. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  112. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  113. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  114. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  115. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  116. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  117. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  118. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  119. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  120. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  121. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  122. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  123. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  124. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  125. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  126. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  127. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  128. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  129. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  130. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  131. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  132. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  133. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  134. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  135. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  136. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  137. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  138. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  139. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  140. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  141. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  142. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  143. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  144. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  145. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  146. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  147. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  148. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  149. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  150. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  151. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  152. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  153. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  154. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  155. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  156. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  157. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  158. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  159. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  160. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  161. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  162. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  163. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  164. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  165. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  166. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  167. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  168. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  169. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  170. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  171. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  172. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  173. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  174. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  175. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  176. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  177. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  178. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  179. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  180. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  181. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  182. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  183. @Anonymous - 2009/09/03 17:04
    비밀 댓글 입니다.

    답글삭제
  184. qv9QDJ Cool lol hey bla bla bla bla

    답글삭제
  185. 5FP0TJ Cool lol hey bla bla bla bla

    답글삭제
  186. KrX2XB Cool lol hey bla bla bla bla

    답글삭제
  187. tzSoZb Cool lol hey bla bla bla bla

    답글삭제