top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to give me perms to use the firewire port using Ubuntu?

0 votes
246 views

I just had to run kino as root, because I didn't have permission to use the firewire port to talk to my Sony Handi-cam digital hi8 movie camera.

So, while I have a root session going, what do I have to do to make the user 1000, me, be able to use the firewire port?

posted Jun 24, 2013 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Kino reports the device it is trying to open. The quick and dirty answer is to change the group ownership on that device file (/dev/whatever) to your own group. The module/device has "1394" in the name, I think.

The nicer, tidier, more extensible, and arguably *right* way to do it would be to set up a firewire users group, put yourself in it, and give the device that group ownership. You will then need to set that group
ownership on each boot, of course. There is a mechanism for that which I can't remember off the top of my head, but it's used to do things like provide access to serial ports to the dialout users group.

answer Jun 24, 2013 by anonymous
Similar Questions
+1 vote

I am using VirtualBox with Ubuntu version 14 installed in it. I have created 4 virualbox ports vboxnet0,1,2,3.

I would like to add 2 new ethernet ports in Ubuntu to assign each ethernet port to a vboxnet , I am already having eth0 and eth1, I would like to add 2 more ethernet ports, please help?

0 votes

Pleas point me to a good source how to use that (with ubuntu and Tomcat 7)?

The internet is full of selfmade /etc/init.d/ scripts, but mostly it isn't used it as a real service (jsvc). Keyword: bin/*daemon.sh*
Even the books "Apache Tomcat 7" and "Tomcat 7 Essentials" are not talking about it.

On the docs I've found this [http://tomcat.apache.org/tomcat-7.0-doc/setup.html#Unix_daemon]:

cd $CATALINA_HOME/bin
tar xvfz commons-daemon-native.tar.gz
cd commons-daemon-1.0.x-native-src/unix
./configure
make
cp jsvc ../..
cd ../..

But what about:
* set env. variables (maybe: catalina.sh?, /etc/profiles?)
* adjust the heap size
* logging to the right directory (like: /var/log/tomcat/...)
* specifying the User: "tomcat"

0 votes

I want to know when "apt-add-repository" becomes mandatory to run in Ubuntu machine. Usually I used following two commands many times.
$sudo apt-get update
$sudo apt-get install

0 votes

Anyone know of a tool to create SVG files (or similar) using some kind of macro or command line?
For instance, if I want to draw several lines start starts at the same point, have the same length but different angles (this example is written in some kind of Basic looking pseudo code):

x=150
y=100
length=100
drawline x,y,length,0
drawline x,y,length,1.4
drawline x,y,length,2,8
drawline x,y,length,4.2
drawline x,y,length,5.6
drawline x,y,length,7.0

Or maybe even better; something like this:

x=150
y=100
length=100
For Angle=0 To 180 Step 1.4
 drawline x,y,length,angle
Next Angle

Another acceptable approach would be:

xStart=150
yStart=100
Length=100
For Angle=0 To 180 Step 1.4
xEnd=xStart+Length*sin(Angle*π/180)
yEnd=xStart+Length*cos(Angle*π/180)
  drawline xStart,yStart,xEnd,yEnd
Next Angle

I have had a quick look at Inkscape but I couldnt find any kind of command line or macro programming IDE there.

...