WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: $ cat /dev/snd/seq  (Read 2924 times)

Offline hitsware

  • Jr. Member
  • **
  • Posts: 97
$ cat /dev/snd/seq
« on: July 23, 2012, 05:21:56 PM »
How do I create a file that

Code: [Select]
     cat /dev/snd/seq     
will find ?

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: $ cat /dev/snd/seq
« Reply #1 on: July 23, 2012, 06:17:20 PM »
Hi hitsware
This will create the correct special file:
Code: [Select]
sudo mknod -m 664 /dev/snd/seq c 116 1
sudo chown root:staff /dev/snd/seq
I don't think it's going to help you unless there is a driver associated with it.
« Last Edit: July 23, 2012, 09:38:29 PM by Rich »

Offline hitsware

  • Jr. Member
  • **
  • Posts: 97
Re: $ cat /dev/snd/seq
« Reply #2 on: July 23, 2012, 07:53:52 PM »
I may be clutching @ straws.
I keep getting an error ' file not found '
I am assuming that on installation something
will write to it .
I tried the 'make new directory' on the edit utility
but got ' operation denied ' or somesuch
« Last Edit: July 23, 2012, 08:07:29 PM by hitsware »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: $ cat /dev/snd/seq
« Reply #3 on: July 23, 2012, 09:56:31 PM »
Hi hitsware
Quote
I tried the 'make new directory' on the edit utility
I don't understand what you are referring to.
Quote
but got ' operation denied ' or somesuch
Half-assed error reporting won't fly. I feel reasonably certain that there are no programs that return the
error "somesuch". No one but you can see what's on your screen, which makes it your responsibility to
accurately report what shows up on it.
There was a typo in the mknod command I posted, it has been corrected.

Offline hitsware

  • Jr. Member
  • **
  • Posts: 97
Re: $ cat /dev/snd/seq
« Reply #4 on: July 23, 2012, 10:14:43 PM »
> Half-assed error reporting won't fly.

Better ass/2 than no ass at all :)

Tell me again how to paste my terminal screen into messages on this forum.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: $ cat /dev/snd/seq
« Reply #5 on: July 23, 2012, 10:22:16 PM »
Hi hitsware
Move the mouse pointer to where you wish to start copying. Press and hold the left mouse button down, and
proceed to drag the cursor until all the text you wish to copy is highlighted, then release the mouse button.
Move the mouse cursor to your browser to where you wish to paste to, click the left button once to place the
cursor, and click the center mouse button once to paste the text.

Offline hitsware

  • Jr. Member
  • **
  • Posts: 97
Re: $ cat /dev/snd/seq
« Reply #6 on: July 23, 2012, 10:25:47 PM »
> I don't understand what you are referring to.

The 'edit' utlity from the edit icon ......

edit
come to think of it that error message is not in the terminal
window .....
« Last Edit: July 23, 2012, 11:12:22 PM by hitsware »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: $ cat /dev/snd/seq
« Reply #7 on: July 23, 2012, 11:36:48 PM »
Hi hitsware
Are you referring to the icon with the pen on it that starts the text editor?

Offline hitsware

  • Jr. Member
  • **
  • Posts: 97
Re: $ cat /dev/snd/seq
« Reply #8 on: July 24, 2012, 04:34:28 AM »
Hi hitsware
Are you referring to the icon with the pen on it that starts the text editor?
Yes

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: $ cat /dev/snd/seq
« Reply #9 on: July 24, 2012, 12:15:40 PM »
Hi hitsware
The Editor app is only capable of creating a new file name in an existing directory, it cannot create a new
directory. It is also not suitable for creating entries in the /dev directory, that's what the mknod command
is for.