Go to advanced search

by thagrol
Sun Feb 01, 2015 7:40 pm
Forum: General discussion
Topic: Using Pi to auto-align a Goto mounted Telescope
Replies: 18
Views: 4763

Re: Using Pi to auto-align a Goto mounted Telescope

... it doesn’t matter where you’re scope is pointing, just that it’s pointing to some place in the sky where you can see the sky. Not necessarily. If you're willing to duplicate the handset's databases and functionality on the pi then, yes. If you want to use the scope's handset for GoTos etc then ...
by thagrol
Fri Jan 30, 2015 4:51 pm
Forum: General discussion
Topic: Using Pi to auto-align a Goto mounted Telescope
Replies: 18
Views: 4763

Re: Using Pi to auto-align a Goto mounted Telescope

gordon77 wrote:"Neither of these can be connected directly to a pi."

Could you use a Serial to USB adaptor/cable ?

Gordon77
Yep. Or a level shifter. What you can't do is connect them directly to the serial pins on the gpio connecter.
by thagrol
Thu Jan 29, 2015 2:20 pm
Forum: General discussion
Topic: Using Pi to auto-align a Goto mounted Telescope
Replies: 18
Views: 4763

Re: Using Pi to auto-align a Goto mounted Telescope

I've also given this some though but have yet to do more than that. As I understand it the process would go something like this: Get GPS co-ords, date and time and send to handset. Select alignment method (this may need to be done manually on the handset) Select first aligment star/object Take wide ...
by thagrol
Sun Jan 11, 2015 7:56 pm
Forum: Automation, sensing and robotics
Topic: Servoblaster Help!
Replies: 8
Views: 2205

Re: Servoblaster Help!

I am having difficulty understanding this... Does that line change the parameters for good, setting it as the new default, or would i have to write a script that runs it every time i reboot? Is it possible to change the default, and make the changed config the new default? You'd need to run that at...
by thagrol
Sat Jan 10, 2015 11:02 pm
Forum: Automation, sensing and robotics
Topic: Servoblaster Help!
Replies: 8
Views: 2205

Re: Servoblaster Help!

Last time I used servoblaster, you ran it once and supplied all non-default parameters you wanted to set. For example:

Code: Select all

sudo ./servod --p1pins=3,5,7,11,13,15 --min=60 --max=230
The easiest way to save this config is to write yourself a short shell script and run that instead.
by thagrol
Wed Nov 19, 2014 9:53 pm
Forum: Networking and servers
Topic: Samba Server Problems
Replies: 18
Views: 7217

Re: Samba Server Problems

The errors you have in your log file are also present in mine, and my setup is working. They're probably related to a lack of ipv6 support. If you haven't yet, try restarting samba: sudo service samba restart Have you run sudo smbpasswd -a hunter at anytime to add your user to samba's database? Some...
by thagrol
Wed Nov 19, 2014 12:57 pm
Forum: Networking and servers
Topic: Samba Server Problems
Replies: 18
Views: 7217

Re: Samba Server Problems

Samba maintains its own user database seperately to the linux one. Have you added your user to that?

Take a look at the man pages for smbpasswd and/or pdbedit for info on how to do this.
by thagrol
Mon Nov 17, 2014 10:12 pm
Forum: Automation, sensing and robotics
Topic: Servo control board
Replies: 5
Views: 1316

Re: Servo control board

I've had no problems so far using the pi's gpio for the servo pwm pulses in a couple of projects. Power can be an issue though. I've been able to run a couple of sub-micro servos directly from the pi's 5v pins but standard size ones need a seperate supply to the pi to avoid brownouts and reboots. Ju...
by thagrol
Tue Sep 16, 2014 1:02 pm
Forum: Troubleshooting
Topic: RPi B+ / SAMBA / MAC OS X
Replies: 3
Views: 1985

Re: RPi B+ / SAMBA / MAC OS X

chown and chmod won't work on (v)fat formatted partitions. Fat simply doesn't have support for these attributes in the way linux expects (or at all). Have a look at the man page for mount, specifically in the vfat/fat32 section for uid, dmask, fmask, etc. You'll then need to add/change suitable entr...
by thagrol
Sun Sep 07, 2014 3:11 pm
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: GPIO-for RTS/CTS
Replies: 2
Views: 887

Re: GPIO-for RTS/CTS

This may not be directly linked to those error messages but "make install" often needs root privilages. Try "sudo make install".
by thagrol
Thu Aug 28, 2014 4:54 pm
Forum: Beginners
Topic: SAMBA: Win7 sees shares and files, but can't add, create or
Replies: 2
Views: 847

Re: SAMBA: Win7 sees shares and files, but can't add, create

Is your USB drive formatted as one of the FAT varients (e.g. FAT32)? If so check what mount options you're using, especially umask, dmask, fmask, and maybe uid. Also check that the partition is being mounted rw and not ro (applies even if not FAT). The "mount" command will lst all current mounted dr...
by thagrol
Mon Aug 25, 2014 4:43 pm
Forum: Troubleshooting
Topic: RPi as SAMBA server for Windows backup access denied
Replies: 3
Views: 1059

Re: RPi as SAMBA server for Windows backup access denied

Check your samba config file and make sure that the share is not set to read only. Also check the permissions on the files/directories that you are sharing.

And of you're sharing a FAT partition from the Pi check the mount options too.
by thagrol
Fri Jun 20, 2014 10:01 am
Forum: Troubleshooting
Topic: Samba issues
Replies: 7
Views: 3866

Re: Samba issues

Try changing

Code: Select all

only guest = Yes
to

Code: Select all

only guest = No
by thagrol
Sun Jun 15, 2014 10:10 pm
Forum: Networking and servers
Topic: Samba
Replies: 4
Views: 1138

Re: Samba

Couple of things to check: 1. Is the share configured as read/write? The default is likely to be read only. 2. Which mount options did you use with your USB stick? mount will list the current ones. Make sure that it has been mounted with the rw option. If it's been formatted as fat32, you'll probabl...
by thagrol
Mon Jan 06, 2014 2:32 pm
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: USB panel mount
Replies: 1
Views: 638

Re: USB panel mount

http://www.frontx.com Have something similar in a range of lengths for $7 each.

If you don't mind a bit of soldering and/or hardware hacking, something like this http://www.maplin.co.uk/p/usb-11-twin-backplate-ly53h might be usable too.
by thagrol
Tue Dec 10, 2013 1:10 pm
Forum: Networking and servers
Topic: Can not connect via Samba from winxp
Replies: 4
Views: 2611

Re: Can not connect via Samba from winxp

Oh and try adding this to your [Globals] section:

Code: Select all

wins support = yes
by thagrol
Tue Dec 10, 2013 12:59 pm
Forum: Networking and servers
Topic: Can not connect via Samba from winxp
Replies: 4
Views: 2611

Re: Can not connect via Samba from winxp

The workgroup change may not be strictly necessary unless you're browsing the network via Network Places on XP. A quick google on the error message come up with a few possible solutions: http://social.technet.microsoft.com/Forums/windowsserver/en-US/5c21fd13-41d7-452e-a9c7-8dc58d12c5b5/error-no-netw...
by thagrol
Tue Dec 03, 2013 5:06 pm
Forum: Networking and servers
Topic: Can not connect via Samba from winxp
Replies: 4
Views: 2611

Re: Can not connect via Samba from winxp

Try changing preferred master, domain master, and local master to no or configuring samba to act as a WINS server (I forget where as I usually use SWAT to manage my config).

You may also want to make sure that your pi and XP systems have the same workgroup set.
by thagrol
Sat Nov 02, 2013 9:22 pm
Forum: Beginners
Topic: No spare HDMI monitor? XDMCP setup HOWTO
Replies: 9
Views: 21705

Re: No spare HDMI monitor? XDMCP setup HOWTO

If you're running windows on your PC try Cygwin-X or xming. You'll need to use these in single window mode though.
by thagrol
Wed Oct 02, 2013 1:31 pm
Forum: Camera board
Topic: taking pictures fastr than 2 seconds
Replies: 42
Views: 9860

Re: taking pictures fastr than 2 seconds

Just ran a quick & dirty test as follows: Model A raspi RAM DIsk created byL mount -o size=32M -t tmpfs none /mnt raspistill executed as root in /mnt with this command line: raspistill -t 30000 -tl 500 -o image%d.jpg Killed raspi still once ram disk filled. ls -ltr --full-time reports: -rw-r--r-- 1 ...
by thagrol
Mon Sep 23, 2013 11:02 am
Forum: Raspberry Pi OS
Topic: Can't use pwd-protected SMB shares
Replies: 6
Views: 1484

Re: Can't use pwd-protected SMB shares

Not sure about going from linux to windows, but when going the other way (windows box to share on linux box) you need to have added the relevant user(s) to the smbpass file. Incidentally, there is a GUI config tool for samba: sudo apt-get install swat Then open a web browser and point it at localhos...
by thagrol
Sun Sep 15, 2013 5:50 pm
Forum: Raspberry Pi OS
Topic: autologin
Replies: 7
Views: 1672

Re: autologin

This is horribly unsecure but will work. Use a command line like this to start putty: putty -pw <password> <user>@<host> e.g. putty -pw password pi@raspi On windows, edit/create a shortcut to putty as required. Do not do this on a computer you don't have secure access to. Anyone who can access your ...
by thagrol
Fri Jun 21, 2013 3:36 pm
Forum: Beginners
Topic: Multiple shares on a Pi samba & Windows 7
Replies: 1
Views: 1499

Re: Multiple shares on a Pi samba & Windows 7

If win7 is the same as vista it will allow connection to multiple shares but they must all be accesible by the user you logged in to the samba server with. What you can't do is login to one server with several different IDs. Edit your smb.conf file (or use SWAT) to enable the HOMES share and creat a...

Go to advanced search