top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

DVD drivers for external usb dvd550s-H03 8, ubuntu precise pagolin/puppy precise

0 votes
174 views

I wish to use HPs dvd550s-H03 8 with Puppy precise based on Ubuntu 12.04. Currently it does not detect my external us.b drive. Can someone point me in the right direction?

posted May 18, 2013 by anonymous

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

1 Answer

0 votes

I also have a couple of USB drives that whilst work perfectly on windows don't appear to be recognised on xubuntu. The only solution i've found after a google is to write one which is apparently not too difficult... i'm still researching it.

answer May 18, 2013 by anonymous
Similar Questions
+1 vote

I want to build a class that perform various functions to the content(or lines) of any given file. I want to first include the opening and reading file function into that class, then add other methods.

Here is what I wrote for opening file and reading the lines:

class FileOpration:
 def __init__(self,name):
 self.name = name
 self.filename = self.name
 def readAllline(self):
 open(self.name).readlines()

file1 = FileOpration("myfile.txt")
print file1.filename
allines = file1.readAllline()
print allines

I define self.name variable because I want to store the specific file that I read. This works fine by the test code of print file1.filename. I saw "myfile.txt" on the terminal output.

However, the readAllline() method dose not work. The code only give me "None" as the output on terminal

0 votes

I have a Python script where I want to run fork and run an external command (or set of commands).

For example, after doing , I then want to run ssh to a host, handover control back to the user, and have my script terminate.

Or I might want to run ssh to a host, less a certain textfile, then exit. What's the idiomatic way of doing this within Python? Is it possible to do with Subprocess?

+2 votes

When I was using MS windows I used a program Karen' Replicator. Is there similar sort of program in ubuntu?

...