Posts

Showing posts from May, 2012

Adding a microphone - question - Raspberry Pi Forums

Image
since pi doesn't support microphone input, i've attempted add small usb sound card fix problem. card seen my linux pi 3.6.11+ #474 preempt thu jun 13 17:14:42 bst 2013 armv6l gnu/linux kernel , dmesg reports this: [19591.036582] hid-generic 0003:04d9:1503.000d: input,hidraw2: usb hid v1.10 device [ usb keyboard] on usb-bcm2708_usb-1.3.4/input1 [19591.967838] usb 1-1.3.1: new full-speed usb device number 14 using dwc_otg [19592.078669] usb 1-1.3.1: new usb device found, idvendor=1130, idproduct=f211 [19592.078700] usb 1-1.3.1: new usb device strings: mfr=0, product=2, serialnumber=0 [19592.078717] usb 1-1.3.1: product: usb audio [19592.091217] usbmixer: volume control quirk tenx tp6911 audio headset [19592.091277] usbmixer: volume control quirk tenx tp6911 audio headset [19592.099032] input: usb audio /devices/platform/bcm2708_usb/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.3/input/input13 [19592.102416] hid-generic 0003:1130:f211.000e: input,hidraw3: usb hid v1.10 devic...

Rising Edge Interrupt

i'm trying set interrupt act on rising edge coming motion detector activate output period of time. code have far: code: [select] //ewagner //5/7/2002 // #define led 13 volatile int flag = low; void setup() { pinmode(led, output); digitalwrite (led, low); attachinterrupt(0, light, rising); } void loop() {  if (flag == high);  {    digitalwrite (led, high);    delay(1000);    digitalwrite (led, low);    flag = low;  } } void light() {  flag = high; } i connected interrupt pin ground on board output continually stays on. appreciated. you have not defined interrupt service routine. there nothing when interrupt. see:- http://arduino.cc/it/reference/attachinterrupt Arduino Forum > Using Arduino > Project Guidance > Rising Edge Interrupt arduino

Return as char

hello, i'm trying echo input serial monitor. returns dec, doesn't echo. want return character. try code below doesn't work. error @ : serial.println(val, char);. wrong? thnx, code: [select] void setup(){     serial.begin(9600); } void loop(){         if (serial.available() > 0) {                       int val= serial.read();                       serial.println(val, char);                       }     } i use serial.write() , lowbyte function low byte of int. code: [select] serial.write(lowbyte(val)); Arduino Forum > Using Arduino > Programming Questions > Return as char arduino

Internet Explorer and Clear type

internet explorer version 7 has enabled clear type, increase font legibility. as result, text within tables being cropped on right side. how can prevent happening? why happening? you using non-web-standard font? "anthony lebaron" <no@spam.org> wrote in message news:enufv3$9sp$1@forums.macromedia.com... > internet explorer version 7 has enabled clear type, increase font > legibility. > result, text within tables being cropped on right side. > how can prevent happening? > why happening? > More discussions in Dreamweaver support forum adobe

Thread: Thank you Alan Cox.

Image
edit: mods, please move thread recurring. situation little more complex cafe posts should @ point friends, many news sites reporting alan cox moving on role in kernel development. cox has more talent ever will, , wish him best. interested in these things, here wikipedia bio: http://en.wikipedia.org/wiki/alan_cox . , more interested in virulent side of these happenings - here spark seems have started forest fire: http://74.125.155.132/search?q=cache...&hl=en&strip=1 . cox great talent, , find hard believe gone scene long. best of luck alan. edit: lkml loading intermittently again - don't know make of story. broke story last night @ point cox answering e-mails statements not involved anymore. of morning cox answering e-mails , telling people retrieve patch queue deleted yesterday. don't want change original purpose of thread, if kernel dev starts deleting resources under control, decides doesn't want leave should allowed stay? ...

Installing Smartenit's HomAdPi software (zbpserver (1.12-1)) - Raspberry Pi Forums

hi all, followed instructions on "how to" tab of following page: http://simplehomenet.com/solutions.asp?page_id=homaidpi ran issues, see output further below. (i ran on 2013-07-13). btw, before ran else, ran following, in sequence:- apt-get update apt-get upgrade apt-get dist-upgrade issue below appears have occurred when ran "sudo apt-get install zbpserver" command (step 5 in "how to" of link above). since pi embedded system, isn't normal build packages on pc/host system rather on pi itself? me looks software has been tested on linux pc, has build tools installed, not tested on pi without tools (at least not particular version, or tested other tools installed don't have). looks "make config" or similar has been attempted above install command , "sudo: make: command not found" result. looks errors occurred while trying miniupnpc-1.2 installed, or rather, configured/built. http://www.raspberrypi.org/phpbb3//vi...

relay 5v arduino

Image
questa è la scheda relay che ho acquistato, però pin di controllo dei relè funzionano se massa. cioè se collego massa uno dei pin il relè si eccita. però come faccio con arduino impostare un pin su massa??? facile, sai che devi lasciare high il pin e per eccitare il rele lo mandi low e' all'opposto ma per arduino non fa differenza Arduino Forum > International > Italiano > Generale (Moderator: leo72) > relay 5v arduino arduino

rotating a nested movieclip

i trying rotate nested movieclip pressing nested clip pressing rotation command. works when clip rotate on _root layer not when within (which must not rotate). need maintain nesting because have zoom , pan function associated movieclips in layer. this code have: rotate button - on (press) { changerotation = getproperty("/rotate", _rotation); setproperty("/rotate", _rotation, number(changerotation)+15); } nested movieclip - on (press) { startdrag("", false); } on (release) { stopdrag(); } on (release) { setproperty("/rotate", _name, ""); setproperty("", _name, "rotate"); } you need use path/instance name target movieclip instance want control. More discussions in ActionScript 1 and 2 adobe

How to read the state of an output pin ?

hi. i'm trying read output state of output pin seams not working. i've got tihs : code: [select] digitalwrite(10, high); statepin10 = digitalread(10); if (statepin10 == high) { dutycycle = map (ubat100, 1340, 1445, 100, 220);     dutycycle = constrain(dutycycle, 100, 220);       analogwrite(8, dutycycle);   } but doesn't analogwrite on pin n°8 (only 0). if i' m not doing right, how can know state of output pin ? i'm not sure can digitalread() output pin. might have keep track of state manually: code: [select] digitalwrite(10, high); statepin10 = high; Arduino Forum > Using Arduino > Programming Questions > How to read the state of an output pin ? arduino

internal pull up r's

code: [select] void setup(){   serial.begin(9600);   pinmode(supfanled, output);           // supply fan led o/p   digitalwrite(supfanled, high);        // turn on pullup resistors hi just stumbled upon internal pull r's, correct place (setup) define internal pull r's? thank you set pin mode input instead of output , you're on way. i know looks wrong writing pin set input mode, that's how arduino works turning on resistors. code: [select] void setup(){   serial.begin(9600);   pinmode(supfanled, input);           // supply fan led o/p   digitalwrite(supfanled, high);        // turn on pullup resistors } Arduino Forum > Using Arduino > Programming Questions > internal pull up r's ...

Arabic on joomla - [تم الحل] - Joomla! Forum - community, help and support

i unable display arabic topic headings? when type heading in arabic shows 4s4s etc,... please need do? hello there , first off , if speak arabic , ask kindly express problem in arabic many users can , helped ! well , seems you're using english language file (1) admin. panel , select " language manager " (2) select english , click " edit " (3) search iso-8859-1 , replace windows-1256 tell me if problem there still ! cheers ! Board index Joomla! International Language Support International Zone Arabic Forum الأرشيف

Thread: Cannot run dropbox

i have installed dropbox downloading , installing .deb file website: http://www.getdropbox.com/downloading?os=lnx logged out, logged in again, , started nautilus. nautilus-dropbox extension should have started @ point, see no change nautilus. tried running "killall nautilus" , restarting nautilus - no luck. added dropbox repositories , ran sudo apt-get install nautilus-dropbox. told me latest version. ideas why doesn't seem run me? make sure dropbox set start automatically. in startup applications, have dropbox entry runs this: code: dropbox start -i Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [all variants] Cannot run dropbox Ubuntu

difference between reboot and reset

so have arduino doing stuff in robot.  lose partial or full responsiveness arduino side of things.  have yet pinpoint problem, since doing lot of stuff @ once, 1 thing certain, functional sketch has suddenly, without mod or re-upload, ceased function properly.  powering on , off doesn't help, seemed re-uploading software solution, seems take several tries fix.  other day problem occurred again.  had robot working fine.  left alone afew days.  came back, didn't work.  turned off , on ton of times, never started working again.  next day, still nothing.  not having laptop, tried jiggling al lthe connections, nothing, hitting reset button on board seemed fix it. question: difference between hitting reset button , powering arduino board on , off?  initiate ram clear routine, nothing special? specifically mega r3. as far know should same. other way round - power cycle more thorough button reset. th...

Thread: install software from source

hi ubuntu fans want install latest version of nebeans tgz think repositories have older versions. want know following ubuntu, best place install it? how remove when update next version? secondly hard package use netbeans lot , might try , package it? have no idea how it! assistance. if installing multiple users, /opt/netbeans place install it. yourself, anywhere in home directory do. not difficult uninstall netbeans because comes uninstall script. don't know how easy or difficult package netbeans. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] install software from source Ubuntu

Thread: Installing madwifi for first time without Synaptic package manager

hi, got dwa-547 wireless card want use trough madwifi, or somehow else. problem install guides madwifi requires have internet connection, don't have because wireless card isn't working in ubuntu. have dual boot windows on pc, , using windows write this. make clear, don't have access wired connection , starting learning how use ubuntu. there way download files needed in windows, install afterwards in ubuntu ? sure there is. grab snapshot here . lot of people use hal-10.5.6-current, since free branch (without proprietary hal modules, it's purely open source) merged trunk on spring, guess that'd choice too. ubuntu can read fat32 , ntfs partitions, can save on windows partition , mount when swap ubuntu , copy on there. you're going have rebuild modules after every update on kernel, either keep files in saved or bookmark download url, can grab fresh build - new ones show once week. after you...

GSM controller

hi all, i looking if following can done without of problem using gsm module... request value of ph , cf probe mobile phone trigger relays , recieve message once relay has completed timed closed state trigger inputs on event/alarm , receive messages phone send probe values phone few times day i.e 12.00, 18.00, 00.00 etc is there recognised arduino gsm module....on post reading last night gsm module in development post year old there number of gsm shields, http://www.sparkfun.com/products/9607 google 'arduino gsm shield' more. Arduino Forum > Using Arduino > Project Guidance > GSM controller arduino

Thread: ldap configure files

Image
hi, i'm trying install ldap server under ubuntu9.0.4 unlike openldap under windows, i've found: configure files of slapd in: - /etc/default/slapd - /etc/ldap/slapd.d , configure file of ldap in both - /etc/ldap/ldap.conf - /etc/ldap.conf can tell me differences? , moreover, when should use 'localhost' , when should hostname used in complecated conf files. always confused... help? Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [ubuntu] ldap configure files Ubuntu

Strnge behaviour of Mini Servo

Image
i have mini servo, works fine if source current directly arduino or desktop power supply, mini-servo follows code instructions. but if source power ni-mh battery, via voltage divider, mini-servo, stops following instructions , keeps rotating in 1 direction. if attach standard size servo same voltage divider circuit standard-size servo follows code without problem. i checked specs etc. pretty within specs on small servo. please note in above picture specs standard-size servo, not mini-size servo. quote but if source power ni-mh battery, via voltage divider, that's not idea. use proper regulator. edit: why think need reduce voltage? r/c servos designed run off 4 packs of aa or aaa batteries. Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > Strnge behaviour of Mini Servo ard...

flash+puerto serial del pc

quiciera hacerles una pregunta, es posible poder realizar una lectura de un puerto serial desde alguna funcion en flash mx, la cual me sirva para adquirir los datos binarios que yo le estoy mandando desde el microcontrolador, y que luego de recibidos yo pueda dar ciertas propiedades o condiciones desde el actionscript para luego realizar algun proceso propio de flash (animacion, presionar algun boton)? se que depronto sea posible, por que flash puede leer la hora del computador, y puede recibir la informacion que uno le manda desde el teclado, es decir, uno puede hacer ciertas aplicaciones las cuales se programas desde el action script (a cada tecla le corresponde un codigo ascii).? es posible? cual seria la funcion para poder leer el puerto serial del computador? si habria que crearla como seria? More discussions in ActionScript 1 and 2 adobe

Low level documentation

hello, want learn ardiono base. mean, not using libraries such servos etc, able understand inside, and able programming myself. making own interruption handling devices connected etc. (not asm code of cource) what should read? have seen here learning foundations or hacking didnt find needed information. start here: avr-libc: http://www.nongnu.org/avr-libc/user-manual/modules.html atmega328p: http://www.atmel.com/images/doc8271.pdf -- the gadget shield : accelerometer, rgb led, ir transmit/receive, speaker, microphone, light sensor, potentiometer, pushbuttons Arduino Forum > Topics > Education and Teaching > Low level documentation arduino

How do i Play a use HD Decoder - Raspberry Pi Forums

recently bought raspberry pi-b board, , looking how use hd decoder? any c program using "mmal" or openmax api profits full hardware - acceleration. other languages might or might not supported via third parties. therefore , app doing @ omxplayer. check /opt/vc directory sample programs. check http://www.github.com/raspberrypi , @ the source of camera apps. search forum (via google) other programming tips. have specific subforums for these topics. ghans edit : recent versions of gstreamer come support hardware-acceleration too. raspberrypi

Interruptions ATMega 328p

Image
l'électronicien va se faire tout petit en vous proposant un pense bête qu'il s'était pour lui. mon besoin de février dernier était de déclencher 4 interruptions à partir de 4 boutons indépendants. par contre l'électronicien aimerait bien se défouler sur un tuto : les pointeurs mais c'est très simple ! merci pour ta seconde contribution, dès que j'ai le temps je le parcourrais avec attention. quote from: 68tjs on apr 11, 2012, 04:25 pm par contre l'électronicien aimerait bien se défouler sur un tuto : les pointeurs mais c'est très simple ! c'est en cours de production, ça prendra peut être un peux de temps.  Arduino Forum > International > Français > Tutoriels et cours (Moderators: jfs, Snootlab) > Interruptions ATMega 328p arduino

Sending values seperated by comma over xbee

am failing correct output. reading in either value <b444> or <s444,555>. trying concentrate on getting code correct split <444,555> 2 values use. depending on is, in started && ended, either <s444,555> or <b444> 'b' or 'g' , store integers use. your code based around serial data arriving in 1 chunk. please read this: http://www.gammon.com.au/serial Arduino Forum > Using Arduino > Programming Questions > Sending values seperated by comma over xbee arduino

Thread: Clean install Jaunty

for last week or after update @ end of jaunty boot switch on disk check brief moments, boots, don't know how stop can read appears goes away , finishes booting up. otherwise nothing can see. way slow down can read it. , report back?????? or normal thing??????? didn't happen before????? you try pressing pause button in keyboard Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Clean install Jaunty Ubuntu

Thread: Multiple VNC/Remote Control Servers

hi all. have bit of technical challenge here. need way set remote desktop clients on windows machines. believe needs set on remote end connect backwards listening process on end because don't want have mess routers , whatnot. need able "initiate" connection starting listening end when need connect and way select computer connect to. idea here able support several end users discreetly , easily. know of way pull off? bump. anyone? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] Multiple VNC/Remote Control Servers Ubuntu

Slowing down rotary encoder using interrupts

hello, i building dds frequency generator using arduino , ad9835 http://arduino.cc/forum/index.php?topic=67958.0 got spark fun. i using 3x4 matrix keypad set output frequency , rotary encoder fine tuning..  i have of working except rotary encoder way sensitive.  i using hardware debouncing found here http://arduino.cc/playground/main/rotaryencoders#debounce , works great in decoder increments in single steps.  my problem using interrupts control rotary encoder , using large dial type knob on encoder , find hard make small adjustments it.  when spin @ reasonable pace frequency going fast.  i have never used interrupts in past read there no way put in delay in code.  how go slowing down interrupts reads every 2nd or 3rd pulse encoder?  can done in softwre or need use kind of hardware methord slow down. i have attached encoder , keypad section of code below.  any or comments appreciated   code: [select] /** * sinusoid frequency gen...

FTP troubles - Raspberry Pi Forums

Image
i have installed ftp server on pi (vsftpd) using tutorial: http://www.instantsupportsite.com/self- ... stall-ftp/ . works perfectly. have external 250gb harddrive connects via usb , wondering how show on directory listing when got ftp://ip address. hi, i`ve mounted hdd directory of raspbmc system can uuid of hdd following: sudo blkid open file sudo nano /etc/fstab , add following line # hdd uuid=72f940b3-f4c6-4301-b9a0-1c3856b46767 /share ext4 defaults 0 0 (you have enter uuid of hdd ) /share folder can find data located @ hdd. i`ve other problem ftp: can connect ftp server via firefox, filezille , on. in in local network. want connect ftp on internet. i`ve checkt wan-ip address of router. i`ve configured port forwarding ftp in router (20, 21) can`t open connection. whats going wrong ? there additional settings i´ve make ?? hope i´ve discribed problem in right way regards raspberrypi

Object distance sensor?

hi, i'm looking make project involve detecting object, , knowing distance between object , detector.  distance on order of 5-10 cm, , object of variety of objects, perhaps narrow pencil.  there arduino sensors me?  don't need precise distance, need able @ signal , tell if object getting closer or farther away. just check distance sensors e.g. @ - http://www.sparkfun.com/categories/139 - Arduino Forum > Using Arduino > Project Guidance > Object distance sensor? arduino

Raspberry Pi Forums - Login

username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register raspberrypi

Thread: mpgtx split mpg file but no sound in totem

i try delete title of mpeg video file mpgtx. mpgtx -s [2:05-] mymovie.mpg -b notitle can watch notitle.mpg (have sound) in mplayer , vlc no sound in totem (gstreamer). (mymovie.mpg can play sound in totem,mplayer , vlc) how can split mpg movies without re encoding , can play totem? (ubuntu 9.04 ,mpgtx 1.3.1) ps. sorry worst grammar. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [ubuntu] mpgtx split mpg file but no sound in totem Ubuntu

Thread: What is a block?

what block?how many bytes have?whats need talk in terms of blocks if have bytes,bits............? in ubuntu jaunty 113 bytes shown 4 blocks .79 bytes 4 blocks. here: http://en.wikipedia.org/wiki/block_(data_storage ) Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] What is a block? Ubuntu

[RÉSOLU]Aide pour un programme signal PWM

Image
bonjour tous, je voudrais réaliser un programme que quand j'appuie sur un bouton poussoir j'ai un signal pwm qui démarre progressivement et s'arrête progressivement. pour le signal pwm j'ai aucun problème le problème vient du bouton poussoir je sais pas comment le mettre dans mon programme. si quelqu'un pourrais m'aider merci voici le programme. code: [select] int ledpin = 9; int luminosite = 0; int variation = 5; boolean etat = false; void setup() {  pinmode (ledpin, output); } void loop() {  analogwrite(ledpin, luminosite);  luminosite = luminosite + variation;  if ( luminosite == 0 || luminosite == 25){    variation = - variation;  }        delay(1000); } edit de jean-françois :  merci de mettre les balises "code" bonjour et bienvenue parmis nous ma religion, c'est la machine d'état. c'est une méthode pour gérer plusieurs taches en...

Pny Gallery width problem - Joomla! Forum - community, help and support

i experiencing problems full-size image view in pony gallery. although have set image width max. 550px, both full-size image , the  content text overflows template's right margin. else experiencing same problem? there cure? your advise appreciated. i've got same problem full sized image. tried editing width field didn't seem make difference. does know needs done here? thanks help. cheers guy Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

SoftwareSerial interrupt conflict?

hello gurus, i have timer2 interrupt of 2msec driving entire clock motion control program (multiple stepper motors , multi led display). whole thing synched 50hz mains long term accuracy ds 1302 chip during power out. works fine. when include softwareserial in order add gps module problem arises. just adding the  .begin creates  unwanted interaction timer interrupt. presume softwareserial involves use of other interrupts. there way around problem? theres no point posting code yet. few suggestions appreciated.  (ide 1.0) quote is there way around problem? of course. http://store.arduino.cc/ww/index.php?main_page=product_info&cpath=11&products_id=196 Arduino Forum > Using Arduino > Programming Questions > SoftwareSerial interrupt conflict? arduino

connecteurs nappes pour montage arduino ?

c'est surement une question bete pour bon nombre des gens qui fréquentent ce forum, mais j'aimerais trouver les douilles et/ou connecteurs pour connecter des nappes ou des cables directement à mon arduino et mon arduino mega pour des projets. je fouine partout, et je ne connais pas bien les tailles, les noms/code des connecteurs. j'ai les nappes, les arduino, il me manque juste ça pour terminer mes projets... pouvez vous m'aider là dessus ? je veux dire, est ce qu'il me faut des embouts femelles au pas de 1.27 ou de 2.54 ? est ce que je dois utiliser des connecteurs ci (coudés ou pas) male/male puis mettres des "douilles" femelles ? Arduino Forum > International > Français (Moderators: jfs, Snootlab) > connecteurs nappes pour montage arduino ? arduino

7" display using battery power - Raspberry Pi Forums

Image
hi, i'm thinking buying cheap 7" display use pi. screen: http://www.amazon.co.uk/camera-monitor- ... tft+screen i'm hoping use portable power bank , make pi portable however, description of display states requires 12v. can screen operate @ 5v? if not has been able mod operate battery supply similar mods 3.5" displays shown here: http://www.raspberrypi.org/phpbb3/viewt ... 64&t=17651 thanks take @ thread on subject http://www.raspberrypi.org/phpbb3/viewt ... 88#p377888 shows battery pack , screen used. ended working although costs more, easyer modding screen, , i'm bit shaky soldering iron lol raspberrypi

Easing animation navigation like Yugo

peace fam i new fuse kit , wanted know if knows of tutorial or allow me navigation system 1 here: http://www.showlogic.com/ there similar example below @ laco site yugo navigation: http://laco.wz.cz/tween/?page=examples any appreciated. not know begin process of creating it. if have method not using fuse kit, appreciate well. they have downloadable samples of technique here (scroll down page): http://www.betriebsraum.de/blog/downloads/ More discussions in ActionScript 1 and 2 adobe

Thread: package xmms-mp4

the package old plugin add support aac formats xmms(1). 1 of dependencies libglib1.2 or better. have libglib2.0 , libglib1.2ldbl. found libglib1.2 package, won't install because break libglib1.2ldbl. how can resolve issue xmms-mp4 install? thanks, david where did these packages from? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [all variants] package xmms-mp4 Ubuntu

Can I build a photo uploader with Flex?

hi, i looking flex possible platform build new photo website. know many of requirements fit great flex/flash platform. 1 specific issue build easy-to-use, easy-to-deploy photo uploader feels flickr/picasa , can manage picking 100s of files/folders. means need: 1 - local read access filesystem browse jpgs upload 2 - local write access add exif keywords selected jpgs (i.e. uploaded tag) 3 - network access upload website for absolute simplest user experience, think need run in local-trusted sandbox, swf downloaded , configured installer. think me 1 , 3. think 2 problem - limited writing local shared objects filesystem? if so, there workaround this? example, can call local executable write exif data jpg, or can use flex/ajax bridge expose swf javascript , somehow use write exif data? also, can point me in right direction understand how write installer configure local-trusted swf? thanks, m. More discussions in Flex (Read Only) adobe

Thread: U9.04 RAMDOM freezing too...

jul 29 18:26:04 xienohp-desktop kernel: [ 18.389060] addrconf(netdev_change): eth0: link becomes ready jul 29 18:26:15 xienohp-desktop kernel: [ 28.188431] inbound in=eth0 out= mac=00:15:58:e4:54:49:00:15:2b:14:5d:41:08:00 src=4.53.94.72 dst=61.238.105.6 len=48 tos=0x00 prec=0x00 ttl=117 id=10544 proto=tcp spt=61597 dpt=22 window=65535 res=0x00 syn urgp=0 jul 29 18:29:05 xienohp-desktop kernel: [ 198.527024] inbound in=eth0 out= mac=00:15:58:e4:54:49:00:15:2b:14:5d:41:08:00 src=24.130.223.17 dst=61.238.105.6 len=129 tos=0x00 prec=0x00 ttl=115 id=53507 proto=udp spt=20416 dpt=7163 len=109 jul 29 18:29:11 xienohp-desktop kernel: [ 204.147977] inbound in=eth0 out= mac=00:15:58:e4:54:49:00:15:2b:14:5d:41:08:00 src=24.130.223.17 dst=61.238.105.6 len=156 tos=0x00 prec=0x00 ttl=115 id=55194 proto=udp spt=20416 dpt=7163 len=136 jul 29 18:34:34 xienohp-desktop kernel: [ 527.125903] inbound in=eth0 out= mac=00:15:58:e4:54:49:00:15:2b:14:5...