19
May

BF20L : lite mer crap.

   Posted by: NeoTech   in Optimum BF20L - Mill

I backspegeln kan man konstatera.. man har aldrig nog med verktyg men har nu införskaffat lite mer iaf. De skruvstycke ja hade som passade pÃ¥ BF20n va jue.. värdelöst. aldrig mer.. jula kan suga min…

Så vände mig till OTD o hitta ett som öppnar 160mm , samt rundmatningsbord och en 4 backs chuck.. Så nu har jag rätt mkt för den manuella biten men målet e jue fortf. en cnc konvertering. Får se om ja behöver allting efteråt när det e klart.. Men ja tills vidare behövs det iaf. =)

Här kommer lite bild:

16
May

Metallsnideri

   Posted by: NeoTech   in Amerikanaren

Så är tiden kommen då jag gömmer mig i garaget likt en av tomtens nissar och snickrar på min bil.. Ja det e varmt nog ute att stå i tshirt och lukta svett och svedd metall.. Har ni tänkt på att metall luktar jevligt weird när det har brunnit.. Ngt o fundera över. Hur som helst efter lite assistans har ja nu fått dit den andra headern.. Och vips.. ja kan börja bygga avgassystem.. behöver jag säga att det andra headersröret inte riktigt ska kunna sitta där? Det e trångt.. Jevligt trångt.. o ska ja ngnsin byta den får ja lyfta karossen lite och ta bort motorn.. yaaay planning.. Men ja avgasystem.. Det får bli ett klassiskt H-balans rör.

1
May

Projektstart: BF20L CNC

   Posted by: NeoTech   in Optimum BF20L - Mill

Japp så är det jag har börjat med ett till projekt ytterligare.. Parallellt med mitt andra lite större projekt.

Det hella uppstod i att jag behövde kunna tillverka eller göra om en del grejer, och att lämna iväg saker o få dom gjorda e som alla vet inte alltid det absolut jätte billigaste.
Så ja gjorde matten på det och kom fram till att jag skulle kunna tjäna igen pengarna på en investering av en liten bänkfräs och fick då även idéen om att man kanske skulle göra den CNC styrd..

Ja sagt gjort ett inköp har gjort och här kommer lista.

1: Optimum BF20L fräsmaskin från http://www.top-maschinen.de
2: CNC kit frÃ¥n Ebay – jag köpte av en säljare som kallar sig “Infoshine15“, där vart det ett 3 axis kit pÃ¥ 425 ounce stepper drivers
3: Smoothstepper och C4 variator kontroller kort för spindeln – hittades pÃ¥ cnc4pc.com
4: Kullager för inlagringen av de nya kulskruvarna köptes ifrån vxb.com
5: Och till slut kulskruvarna, de köpte av Balazs pÃ¥ CNCdrive.com – han säljer skruvar pÃ¥ custom order. sÃ¥ längd och svarvning i ändarna kan fÃ¥s till den specifiktation man vill.
Ett tack går till han med att han inte knussla när skruvarna försvann i frakten och bara sonika skickade nya utan o fundera mer på det.

Så, så ser det ut just nu.. har tillverkat 2 fästen för Y axeln av bordet redan, har lite sunkiga bilder på detta här.

Och tanken me detta överdimensionerade fäste är att de ska finnas utrymme för ifall att jag vill montera extra saker i ändarna på bordet eller byta till remdrift av ngn anledning. =)

22
Dec

Howto compile Sybase/Mssql FreeTDS module for PHP5

   Posted by: NeoTech   in Linux, Ubuntu

Howto install Sybase_CT with FreeTDS on Ubuntu 10.10 and probably a couple of other systems.
apt-get install freetds-dev
apt-get install php5-dev

copy the source folder to /usr/src/ if you didnt apt-getted the files directly into this folder.
Move into freetds-dev folder and make ./configure && make -j4
Locate the ./src/sybase_ct/.libs/ folder in freetds.
Copy everything in ./.libs/ to /freetds-dev/lib/
Do the same for ./src/tds/.libs/
Move into php5-dev source folder.
Enter Ext folder, and go into sybase_ct folder.
Type: phpize && ./configure –with-sybase_ct=<path to freetds src> && make
Go down and enter mssql folder
type: phpize && ./configure –with-mssql=<path to freetds src>

In each ext folder it will now exist a moduels folder, in that you will find a corresponding .so
file. Copy that file into the /usr/lib/php5/<somedate> folder.
And create a the modules line in either your php.ini or the conf.d for your phpini.
It should read: extension=<module>.so

This is a short description of how i setup a 16Gb USB pendrive to run Ubuntu 10.10 as a solidstate (ish) drive.

Step1:

Get your hands on a virtualization software, VMWare player, Virtualbox, whatever thats free.

Step2:

Install Ubuntu 10.10 onto a virtual drive that has similar capacity as your USB pendrive, my was 16gb, so i setup a 10gb expansive partion.

Step3:

Complete the Ubuntu installation, pull all the necessary driver for 3D accleration, pull all the updates, setup whatever you would like the installation to run, in my case XBMC with a default standalone session.

Step4:

Fire up the terminal.. Sudo into the bash, by typing “sudo bash”.. congrats you are persistent root user.

Step5:

Edit /etc/fstab so that the root drive (prob, something like UUID={YADAYADA} mounts at … well anyway where it saids error=something, add “,noatime”.
also add a ramdrive for tmp files. byadding this line to the fstab.

tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0

Edit your /etc/rc.local and add this before exit 0

echo deadline > /sys/block/sda/queue/scheduler
echo deadline > /sys/block/sdb/queue/scheduler
echo deadline > /sys/block/sdc/queue/scheduler
echo 1 > /sys/block/sda/queue/iosched/fifo_batch
echo 1 > /sys/block/sdb/queue/iosched/fifo_batch
echo 1 > /sys/block/sdc/queue/iosched/fifo_batch

That should cover all the usual scsi devices the usb pendrive shows up as (usual sdb).

Step6:

Happy? Logout, shutdown your vmware/whatever player and go the VM machine directory and copy you virtual drive.
Mount it to your virtualization software as a “second” hardrive. And start the virtualzation up again. If you are using vmware it will now groan something about the drives has the same UUID, ignore this…

Step7:

Back in ubuntu, fire up the terminal, sudo bash again, and type mount.. take note of what drive is mounted to / (root). In my case it was /dev/sdb.
This means that your copy has taken over the system and /dev/sda is just floating around there.
Goodie! Connect your usb pendrive to your virtualization software, and attach it and wait for ubuntu to se it show up on your desktop.

Step8:

Unmount  the pendrive by typing umount /dev/sdc (orwhat ever device it was). DONT disconnect it from the virtual computer….

Step9:

In your terminal type “dd if=/dev/sda of=/dev/sdc bs=1440″ and sitback and wait, THIS will take a while.. depending on how big your original installation on sda was it will copy it bit by bit to your usb pendrive.
Make sure you send it to the correct device… in my case the usb device connected as scsi device c.. (/dev/sdc)..
I went with a blank fat32 formatted drive.. i belive this will not matter cause dd will write over all partions and such. And include the boot sectors onto the usb drive…

Now after about 30minutes (again my case) it should have said something 5000bytes in 5000 bytes out.. bla bla.. goodie your done.. disconnect the usb thumbdrive from virtualization software.. Turn the virtualization off. And reboot your computer.. hit whatever button you need to boot from USB Harddrive/Device and watch linux boot up. If you didnt install all drivers and crap earlier do that now, i managed to get nvidia up and running.

This is not an optimal way of running linux, due to the fact the usb drives are damn fuckin slow. But it’s a solution when you want a persistent linux system on a pendrive.. And not one of those retarded live cd’s…

18
Oct

Magnafuel Quickstar 300

   Posted by: NeoTech   in Amerikanaren

Fick min nya soppa pump. Denna ska väl fan räcka till. ?  Jämför med tändaren bredvid.. detta e ingen holley blÃ¥…

Page 2 of 1912345...10...Last »