Posts

Showing posts from January, 2011

Reinitialize array in function

inside called function want reassign char array, compiler complains "expected primary-expression before ']' token". essentially code looks this static char char_array[]="aaaa"; //change entries of char_array if (some condition) char_array[] = "aaaa"; //reset char_array here error occurs. of course 1 iterate on each character in array, isn't there better way? there number of ways reset defined array. work: code: [select] if (some condition) {    memcpy(char_array, "aaaa", sizeof(char_array)); } edit: bad, ray. Arduino Forum > Using Arduino > Programming Questions > Reinitialize array in function arduino

Acrobat SDK and PDF library

hi! i want know difference between acrobat sdk , corresponding pdf library? i have both adobe acrobat 7.0 sdk installer , pdflsdk 7.0 installer. please share knowledge on these. (in simple terms) the acrobat sdk, collection of header files/documentation , sample files enable create plug-ins add functionality acrobat product. the pdf library collection of libraries/header files/documentation , sample files enable create stand alone application can modify/create pdf files. hth malky More discussions in Acrobat SDK adobe

Can I have an array as an argument for a void function?

    i'm working 17-segment (or in case 16-segment because i'm taking out decimal point make things easier) alphanumeric led displays, , want have code can change array in calling displaystring function , interpret , display on leds. this code defines function: code: [select] void displaystring(int string[]){   //there functions in here 74hc595 shift   //registers driving segments well   clearregisters();   for(int = 0; < sizeof(string); i++){     switch(string[i]){       case 'a':         //i defined lists named a-z pins of the         //display should lit according character         for(int x; x < sizeof(a); x++){           setregisterpin(a[x] + (i * 16), high);         }       case 'b':         for(int x; x < sizeof(b); x++){           setregisterpin(b[x] + (i * 16), high);         }       //etc...     }   }   writeregisters(); } and here part call function: code: [select] void loop(){   displaystring ({'a', 'b'});   delay(10

Programming 2 joysticks - Raspberry Pi Forums

i have made program , can't read 2 joysticks separately. have verified both joysticks work fine separately read 1 joystick when used together. code: select all void loop() { // read analog inputs , set x-y position joystick.x(analogread(0)); joystick.y(analogread(1)); joystick.x(analogread(2)); joystick.y(analogread(3)); or code: select all void loop() { // read analog inputs , set x-y position joystick.x(1, analogread(0)); joystick.y(1, analogread(1)); joystick.x(2, analogread(2)); joystick.y(2, analogread(3)); using teensy , loading code through teensyduino i don't know library using, looks need instantiate 2 joystick objects, not one. right now, code read channels 0 & 1, overwrite x , y when reading channels 2 & 3 don't know if second listing should work, not familiar joystick object. raspigamer wrote: i have made program , can't read 2 joysticks separately. have verified both joysticks work fine separately read 1 joystick whe

Trying to use a counter with a servo motor

hi, i started using arduino , got stuck on projects on kit tried take bit further what did hook 2 buttons arduino , goal was, lets example: i push button 1 3 times, arduino count three then push button 2 3 times, motor move. i tried writing code it, attached picture of, not working. extra: i attached 5v both buttons , on both buttons sent signal digital inputs 2 button 1 , 3 button 2 i made sure attach buttons ground using 10k resistors no screen shots please. attach sketch between code tags appear after select icon in image below: Arduino Forum > Using Arduino > Programming Questions > Trying to use a counter with a servo motor arduino

Thread: Any word on COD modern warfare 2?

hello all, wondering if body knows how call of duty modern warfare 2 work wine. check appdb? http://appdb.winehq.org/ Forum The Ubuntu Forum Community Ubuntu Specialised Support Wine Any word on COD modern warfare 2? Ubuntu

Control big stepping motors with Raspberry - Raspberry Pi Forums

hello, plan control 4 stepper motors @ least power of nema 17 or bigger guess little raspberry pi. vehicle/robot going big +50kg need strong motors wheels , steering. "mini" build kits stepping motors , raspberry pi have low power limits. , don't have that experience stepper motors. knows how can handle easily? shields, build kits, whatever can connect raspy able supply kind of big stepping motors? thank lot feedback, best regards markus i'd choose appropriate stepper motor driver stepper motor wish use (for nema 17's pololu recommend this one ) , wire appropriate gpio pins. if need pre-built solution @ zeropi need select appropriate driver modules. kickstarter has shipped, i'm not sure buy finished item (but can't have mine). i've sent zeropi team message via kickstarter asking them respond thread online shop link. should noted zeropi board contains 4 slots plug in stepper motor drivers, (such pololu 1 linked above) , makes ea

Removal of prior versions before installing 7.0

we have 225 employees, of whom have acrobat approval 5.0 still installed on systems. switching server-based livecycle reader extensions , need remove approval systems before install reader 7.0. there way build acrobat reader 7.0 installation file using installshield tuner 7.0 don't have manually go every computer , uninstall prior versions of acrobat products? nope. different installer technologies. you'll have remove separate process. More discussions in Enterprise Deployment (Acrobat and Reader) adobe

contact component - Joomla! Forum - community, help and support

hello i have joomla 1.0.12 intalled on apache 2.2.4 php 5.2.0 zendoptimizer 3.2.2 mysql 5.0.27 on windows 2003. when try sending form via build-in contact component error: "all required fields not completed" when hit ok data in form deleted , no email send contact. in other non windows installations contacts components works fine know. think has file permissions pertinent component. windows makes 777 guessing there file component not being 777. as new joomla not sure start looking, or if making right assumptions. new user registration works fine know have mail server set properly. any appreciated i have same problem, think have localized problem : i think problem linked contact email adresses contain more 1 "." ie : name.lasname@domain.com javascript validates email feild i have not yet found fix problem, if anny 1 knows... Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.

Serial.print loop

evening, i'm total noob arduino , have quite ambitious long term goal, totally have start @ begginning , such don't want scour web chunks of code lift; want learn go. means starting scratch. i've written basic code turn pin 13 led on when button pressed pull input low, , while doing so, want serial.print state of button once each change of state, while keeping led lit. i've searched forum , found helpful post pointing me in right direction, need second half of "if" statement. code started with, output serial print text (and understand why doing this) code: [select] const int ledpin = 13; const int sw = 4; int buttonstate =0; void setup() {       serial.begin(9600);         pinmode(ledpin, output);         pinmode(sw, input);         digitalwrite(sw, high);     } void loop() {   buttonstate = digitalread(sw);     if (buttonstate == low) {         digitalwrite(ledpin, high);         serial.println("button pressed");                     }    

Thread: 9.10 and skype

just installed 9.10 , skype not work. tried reinstall installation fails. else experiencing this? help! after adding medibuntu repo , searching synaptic saw skype new beta 2.1 version. installed no problem , tested cam friend no issues. haven't had chance test voice yet given crackling pulseaudio again release have troubleshoot later. sadly, being 2.1 beta means search new people chat feature doesn't work properly. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] 9.10 and skype Ubuntu

iconFunction field for NavBar

so past day or have been looking way either highlight or put icon in front of items in linkbar items in dataprovider. instance in linkbar wanted highlight links had property set true in value object bound linkbar. for linkbar can specify labelfield , labelfunction, icons can specify iconfield. me seems wrong, omission accidentally overlooked. have workaround or know why can't specify iconfunction can in other components? i went ahead , posted issue in bug system: https://bugs.adobe.com/jira/browse/sdk-16296 see if garnered response. sorry if wrong place. message more discussion adding iconfunction navbar class nav controls can use it. <div class=section1><br /><br /><p class=msonormal><font size=2 color=navy face=arial><span style='font-size:<br />10.0pt;font-family:arial;color:navy'>i think you&#8217;re taking right<br />steps.  having bug in jira track , prioritize.  seems like<br />there should iconfunction n

Vent - Joomla! Forum - community, help and support

ive been using joomla few years , great... once have site set up. amazed how counter-intuitive , overly complicated administration end whenever decide restructure or design new web site. though ive read official documentation never gets less complicated. feels battle bend joomla will. i'll skip rest of rant because not terribly productive , move onto question. know of other admin documentation (official or unofficial) may make process easier? someones notes? site style recipes? m not asking templates instead structuring of website content etc have read of http://www.compassdesigns.net/tutorials ... ntent.html Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

Thread: Lubuntu?

Image
where iso lubuntu? there's supposed 1 release. i'm hoping see lubuntu release Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu Lubuntu? Ubuntu

Micro-SD corrotta su pi 2: impossibile da formattare - Raspberry Pi Forums

Image
ciao tutti, ho un pi 2 con micro sd samsung evo 16 gb che qualche tempo fa ha deciso da un momento all'altro di smettere di funzionare. il problema è questo: ci sono le solite 2 partizioni sulla sd : boot e sistema. quella boot è possibile accedere ma file sono incancellabili e la partizione è impossibile da formattare, cancellarla o altro, la seconda invece è idem come la prima, con l'aggiunta che non vi si può accedere. questo è un problema che mi è capitati spesso, ma di solito bastava cancellare le partizioni e riflasharla. stavolta però anche con gparted non fa niente. gli dico di cancellare le partizioni, metto esegui e sembra farlo, dice ok, ma poi non ha cancellato niente. cosa posso provare, secondo voi? da quello che dici sono abbastanza sicuro che la tua microsd sia arrivata al termine della sua vita: normalmente quando succede entrano in una modalità di sola lettura (che spiega tutti tuoi problemi) e te la tieni così com'è, sperando di poter almeno recuperar

[svn] 4548: Flex SDK Bug Fix - Path Fills

revision: 4548 author: jszeto@adobe.com date: 2009-01-15 17:06:23 -0800 (thu, 15 jan 2009) log message: ----------- flex sdk bug fix - path fills sdk-17788 gradient fills path in wrong position path passes fill values measuredx , measuredy, multiplied internal scale factor (ie. width / measuredwidth). qe notes: paths draw @ offset origin place gradient fills doc notes: n/a bugs: sdk-17788 reviewer: evtim ticket links: ------------ http://bugs.adobe.com/jira/browse/sdk-17788 http://bugs.adobe.com/jira/browse/sdk-17788 modified paths: -------------- flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/path.as flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/fxscrollbarleftbuttonskin.mxm l More discussions in Commits adobe

Thread: Ubuntu 9.04 NBR, Firestarter, and Xbox Live problems

Image
hi all, having issues using laptop access xbox live through 360. have dell mini 9, running ubuntu 9.04 netbook remix. installed firestarter well. have dhcp installed well. receive error whenever trying open firestarter or start firewall when have checked option share connections. have been soliciting elsewhere, haven't been able figure out yet. i'll try run down we've tried far. opening firestarter gives me error box says "unknown error has occurred" , asks me check settings/connections. please see attached image titled " error1 ". error not present when "enable internet connection sharing" unticked in options. clicking out of box shows firestarter, seen in attached image " firestarter2 ". eth0 connection xbox ethernet cable. shows activity when try test connection through xbox's console, , shows 0.0 kb/s 0.2 kb/s. eth1 wireless connection. not under load in screenshot, show activity when is. pan0 unk

Saving a pin with 23LCV1024 on SPI mode

hello, i received 23lcv1024 memory module, planning use temporary memory buffer in camera project. have working following setup on arduino uno: arduino --> 23lcv1024 13 --> sck (pin 6) 12 --> (pin 2) 11 --> si (pin 5) 10 --> cs (pin 1) here specs 23lcv1024: http://ww1.microchip.com/downloads/en/devicedoc/25156a.pdf using spiram library updated 1024, able read , write data module. great! here problem: out of pins. need use pins on uno camera module, including pin 10. leaves me 11, 12 , 13 communicate memory module. since using single memory module, need chip select? there way of using spi module on 3 pins? i appreciate on this. thanks! quote since using single memory module, need chip select? there way of using spi module on 3 pins? yes, need chip select. pulling low tells chip new command being sent (read or write). if tell more camera interface may find there way move pins io extender or similar. Arduino Fo

[svn] 3684: Merged 3.0.x revisions 3614,3631,3643 -> trunk

revision: 3684 author: jimurphy@adobe.com date: 2008-10-16 10:13:04 -0700 (thu, 16 oct 2008) log message: ----------- merged 3.0.x revisions 3614,3631,3643 -> trunk modified paths: -------------- flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/combobox.as flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/xmlloader.as flex/sdk/trunk/in/air/air_version.txt property changed: ---------------- flex/sdk/trunk/ More discussions in Commits adobe

Control ciclico de un motor y ademas controlar puerta.

buenos días. soy de santa fe, argentina y quisiera empezar probar el arduino nano, tengo una inquietud para ver cómo resolverlo. es la siguiente: quisiera hacer través del nano, un circuito que sea un control cíclico para un motor con dos relés, que por ej. ande 2 minutos para un lado, se detenga hasta frenarse por inercia (por ej. unos 40 segundos) y luego arranque nuevamente, de esta manera lograr un control cíclico. pero... aquí mi duda, con las sentencias delay() seria simple, lo que pasa que al mismo tiempo tengo que sensar unas entradas como apertura de puerta y temperatura. si se abre la puerta, se detiene el motor, si se cierra la puerta luego de unos 5 segundos arranca el ciclador, si la temperatura llega objetivo, una salida de ok.- bueno, espero que se entienda mi duda... y que puedan ayudarme.... un saludo. gabriel la solución es simple, estudia el ejemplo que hay en el ide archivo-ejemplos-02digital-blinkwithoutdelay podrás ejecutar procesos

SoftwareSerial on Attiny85 with Serial Monitor

hi, i'm trying check if softwareserial working on attiny85, uploaded sketch (using arduino isp, set attiny 8 mhz, internal oscillator, bod disabled, , did "burn bootloader" before) seemed upload fine: code: [select] #include <softwareserial.h> // definitions #define rxpin 3 #define txpin 4 softwareserial myserial(rxpin, txpin); // setup routine runs once when press reset: void setup() {                  myserial.begin(9600); } // loop routine runs on , on asensorpingain forever: void loop() {   myserial.print("stuff");   myserial.println(); } then on arduino, uploaded blank program (except led flash make sure it's running) , uploaded okay too: code: [select] int ledpin = 12; void setup() {  pinmode(ledpin, output);    digitalwrite(ledpin, high);  delay(3000);  digitalwrite(ledpin, low); } void loop() { } then hooked gnd gnd, 5v 5v, , rx (pin 3, literal pin 2 on attiny) rx on arduino micro, , tx (pin 4, literal pin 3) tx on arduino micro. then

Grupo ARDUINO en Valencia

Image
hola! mi nombre es guillermo. hace no llega 2 meses me pille un kit chino de arduino mega, y continuación, hice un curso en una academia de la c/ emilio lluch para aprender los principios de la programación en arduino. la verdad es que el profesor, un tal jorge, es un máquina, y muy buena persona por cierto. si alguien lo necesita, recomiendo la academia, se llama droide, y el curso cuesta unos 99 euros en total. ahora lo que vamos: vereis, me gustaría que dentro de lo posible, personas que estén en mi misma situación de novato, y que no quieran dejar abandonadas sus ganas de aprender usarlo, estuviésemos en contacto para ir acometiendo proyectos. primero sencillitos, y después ir complicando un poco más la cosa, pero consultándonos entre todos las dudas y problemas que vayan surgiendo, de eso se trata. hay que tener en cuenta también que no todo el mundo tiene la misma situación económica, ni tampoco el mismo tiempo disponible para su hobby. yo ahora mismo por ejemplo, estoy

projet vélo + GPS + ...

bonjour à toutes et tous, je vous présente ici mon projet de manière assez détaillée afin de ne pas partir sur de fausses pistes car je vais, à coup sûr avoir besoin de votre aide. compositeur de musique électroacoustique (utilisateur assez expérimenté de max/msp ou pure data, beaucoup moins d'arduino…) , je travaille actuellement à un projet pour le printemps 2015 avec un plasticien qui doit partir pour une résidence longue en lituanie… à vélo ! il va donc se fabriquer un vélo « cargo » sur lequel nous souhaiterions installer un nombre de capteurs (gps, fréquence cardiaque, température voire, humidité). l'idée serait de recueillir ces données sous forme de « tableur » (fichier .csv ou .txt, à voir) afin de les utiliser ultérieurement (après « parsing » dans pure data ou plutôt dans max msp) pour une création sonore et vidéo, travail sur des motifs cartographiques etc après d'assez longues recherches sur les systèmes envisageables (garmin connect en particulier, r

Thread: Help regarding Ubuntu development

dear fellows new forum. have worked in java, c++, c, php , want add features ubuntu language should use , start have gone through faq's did not relevant answer ask. or if want change kernel code of linux own experience please me. ubuntu contains huge number of components written in different languages. "correct" answer depends on want change. changing kernel code, should use c. that's in fact 1 of less interesting tasks. interested in? Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk Help regarding Ubuntu development Ubuntu

Auto Mount USB drive When it is plugged in. - Raspberry Pi Forums

hi there. working on project requires being plug in usb drive , have automount without using fstab. fount guide here ( http://www.axllent.org/docs/view/auto-m ... b-storage/ ) works, when plug in exfat drive, says: code: select all transport endpoint not connected if unmount , remount in command line, works perfectly. have ideas? system: raspberry pi 2 os: minibian https://minibianpi.wordpress.com/ in advance.[/size] http://unix.stackexchange.com/questions ... ce-plug-in raspberrypi

Gsm Shield

Image
ciao tutti, sto lavorando ad un progetto: dovrei rilevare dati ed inviarli tramite sms ad un cellulare, in breve... ho trovato questa: http://www.amazon.com/gsm-gprs-shield-for-arduino/dp/b00n2nsdqk/ref=sr_1_2?s=electronics&ie=utf8&qid=1418306868&sr=1-2&keywords=gsm+shield+arduino 35$... neanche tanto... con questa dovrei riuscire far tutto giusto?? collegamenti sono gli stessi che con la scheda originale? sul datasheet non c'è scritto niente... inoltre ho notato che alcune schede gsm si connettono ad arduino tramite pin 2 e 3... ma io dovrei utilazzare anche interrupt esterni, mi da problemi? grazie mille  posto sul generale ma non come chiudere qui, scusate  Arduino Forum > International > Italiano > Hardware (Moderator: leo72) > Gsm Shield arduino

Rote Augen korrigieren unter PSA4 ineffektiv ggüb. PSA3??

hallo community, man muss ja immer das neueste haben, nun wieder psa4. andere firmen lassen die Änderungen ja manchmal als patch laufen (xp sp2), aber egal, nun zum thema: ich habe ein foto mit ausgeprägten roten augen. unter psa3 konnte ich mit dem schnelleditor mit einem klick ein sehr brauchbares ergebnis erzielen, einstellungen: pupillengröße 30%, verdunklungsbetrag 50%. das gleiche foto mit psa4: hier gelingt mit die korrektur beim besten willen nicht! weder die standard- noch die gleichen einstellungen wie bei psa3 führen zum erfolg. ein bild sagt ja oft mehr: original: http://home.arcor.de/omalilli//img_6050k.jpg psa3 korrektur rote augen per schnelleditor (30/50%): http://home.arcor.de/omalilli//img_6050kpsa3.jpg psa4 korrektur rote augen per schnelleditor (30/50%): http://home.arcor.de/omalilli//img_6050kpsa4.jpg hat jemand schon ähnliche erfahrung gemacht? ist bekannt, dass der code dahingehend geändert wurde? bei bedarf können die beispielfotos in der ursprünglichen au

missing the installation folder? - Joomla! Forum - community, help and support

i have unzipped , ftp'd files (joomla! rev 1.0.12) server (apache, php5, mysql5) , when go mydomain.com/joomla 404 error address in address bar as: http://www.mydomain.com/joomla/installation/index.php it pretty obvious reason installation folder doesn't exist , isn't included in unzipped/ftp'd folders. if manually create installation folder off of root try again (mydomain.com/joomla) same result. no file appears in installation folder , 404. am missing somehting (oother installation/index.php!!) thanks input may able offer. have listed folders exist off of joomla folder below. paul administrator components editor help images includes language mambots modules templates you need download full package version include installation folder Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

Librairie

bonjour, je voulais juste mettre une petite fonction dans un bibliothèque. mais j'ai à chaque fois le message calctime not declared in scope. test.ino code: [select] #include <calctime/calctime.h>   unsigned int timeoutrfid; void setup() {                  } void loop() {     if (calctime(timeoutrfid,5000))   {   ;   }     } calctime.h code: [select] #ifndef calctime_h // si bouton_h n'est pas défini     #define calctime_h #if defined(arduino) && arduino >= 100 #include "arduino.h" #else #include "wprogram.h" #endif #include <inttypes.h> #include <stream.h> #define  timebouton 100 #ifdef __cplusplus extern "c" { #endif boolean calctime(unsigned long actvalue, unsigned long value); #ifdef  __cplusplus } #endif #endif // fin si finalement calctime.cpp code: [select] #include "calctime.h" boolean calctime(unsigned long actvalue, unsigned long value) {   if ((millis()-actvalue) < value)     return fal

PDF aus Software öffnen und sofort Suchfunktion starten

ich erstelle mit meiner software pdf-dateien; hierbei merke ich mir alle erstellten pdf-dateien (pfadangabe) mit dazugehörigen wichtigen inhaltsdaten. das öffnen dieser pdf-dateien aus meiner anwendung funktioniert auch einwandfrei. jetzt möchte ich jedoch diese pdf-datei öffnen und sofort nach einem bestimmten suchbegriff suchen. gibt es beim adobe reader "startparameter", bei welchen suchfunktionen übergeben werden können. wäre echt super, wenn jemand hierzu eine lösung hätte. viele grüße martin informationen über "startparameter" sind hier zu finden: http://partners.adobe.com/public/developer/en/acrobat/pdfopenparameters.pdf More discussions in Deutsche Foren adobe

Custom template instalation problem. Please Help - Joomla! Forum - community, help and support

hello, i had create template me , uploaded onto server. new template folder (kcafc) placed in templates folder other working templates. however, when logged in superadmin , go tino site > template manager following error warning: opendir(): safe mode restriction in effect. script uid 510 not allowed access /home/virtual/site8/fst/var/www/html/templates/kcafc/ owned uid 22005 in /home/virtual/site8/fst/var/www/html/includes/joomla.php on line 3036 warning: opendir(/home/virtual/site8/fst/var/www/html/templates/kcafc/): failed open dir: success in /home/virtual/site8/fst/var/www/html/includes/joomla.php on line 3036 warning: readdir(): supplied argument not valid directory resource in /home/virtual/site8/fst/var/www/html/includes/joomla.php on line 3038 warning: closedir(): supplied argument not valid directory resource in /home/virtual/site8/fst/var/www/html/includes/joomla.php on line 3055 i not sure permissions (if thats is) should changed etc. checked permission setting of new tem

Sender und USB Empfänger

moin leute, ich suche einen sender den ich mit einem arduino uno verbauen kann. das sollte ja erst einmal kein problem sein. allerdings finde ich keinen empfänger mit einem sma-anschluss, der über usb mit meinem laptop verbunden ist... ich möcht eine yagi antenne mit 350-500mhz / 9dbi verwenden und über eine weite entfernung messdaten meines arduinos empfangen. kann mir da jemand einen passenden empfänger + sender empfehlen ? danke was ist für dich "weite entfernung" gibt es dort händyempfang? grüße uwe Arduino Forum > International > Deutsch (Moderator: uwefed) > Sender und USB Empfänger arduino

SW per verifica RS485

Image
salve tutti, sto cercando un sw su winzoz che possa aiutarmi verificare quello che succede su un bus rs485. sto testando la comunicazione in modbus tra due mega e vorrei verificare le trame che si scambiano tra di loro. ho un adattatore usb/rs485 ma non trovo di che gratuito sul web... chi può dirmi cosa usare? grazie e buon pranzo! --> http://thesz.diecru.eu/content/medford.php --> http://www.freemodbus.com/ Arduino Forum > International > Italiano > Software (Moderator: leo72) > SW per verifica RS485 arduino

Thread: How Little Swap Do I Really Need?

Image
[if not posted in appropriate forum, please move it] installed koala 9.10 , have been satisfied -- notice default install uses bit of ssd swap shown gparted @ 500mb. granted, don't know i'd use space for i'm curious how space necessary; what's minimum koala needs function on older model netbook doing designed do? asus eeepc 701(b) 4g ssd 1 gb ram winotree@h1n1:~$ df -h filesystem size used avail use% mounted on /dev/sda1 3.5g 1.7g 1.7g 51% / udev 498m 264k 497m 1% /dev none 498m 0 498m 0% /dev/shm none 498m 76k 498m 1% /var/run none 498m 0 498m 0% /var/lock none 498m 0 498m 0% /lib/init/rw /dev/sdb1 7.5g 70m 7.0g 1% /media/disk if additional information needed please let me know. said, more curiosity necessity. edit - know how change hda5 partition -- question is: ho

Thread: Linux does not boot anymore

hello! i had grub bootloader working each operating system , each os start-up fine: ubuntu 9.04, kernel 2.6.28-11-generic ubuntu 9.04, kernel 2.6.28-11-generic (recovery mode) ubuntu 9.04, memtest86+ other windows operating systems -> windows 7 -> windows vista (recovery mode) -> windows xp debian gnu/linux, kernel 2.6.26-2-686 debian gnu/linux, kernel 2.6.26-2-686 (single-user mode) each linux , windows oss installed on separate partitions vista first, 7 2nd, xp 3rd, ubuntu 4th, debian 5th. however wanted windows bootloader in charge, installed easybcd, rewrote windows mbr, installed neogrub linux, clicked configure menu.lst of neogrub, pasted details of grub above (see neogrub configuration below), saved, after reboot had new bootloader looking this: windows 7 windows vista (recovery mode) windows xp neogrub -> ubuntu 9.04, kernel 2.6.28-11-generic -> ubuntu 9.04, kernel 2.6.28-11-generic (recovery mode) -> ubuntu