Difference between pages "Bash operators" and "Watch DVB-S"

From Linuxintro
(Difference between pages)
imported>ThorstenStaerk
(New page: = $() = The operator $() in the bash shell is replaced by the output of the command enclosed in the parentheses. Examples: rpm -ql $(rpm -qa) for i in $(seq 1 1 100); do echo $i; done)
 
imported>ThorstenStaerk
 
Line 1: Line 1:
= $() =
+
DVB-S is digital satelite TV.
The operator $() in the bash shell is replaced by the output of the command enclosed in the parentheses.
 
  
Examples:
+
I bought a set to watch digital satelite TV. TerraTec Cinergy S2 USB HD.
rpm -ql $(rpm -qa)
 
  
  for i in $(seq 1 1 100); do echo $i; done
+
= SUSE Linux 12.1 =
 +
# hwinfo --usb
 +
  Vendor: usb 0x0ccd "TerraTec Electronic GmbH"
 +
  Device: usb 0x00a8 "USB Stick"
 +
  Serial ID: "080116"
 +
  Driver: "dw2102"
 +
 
 +
= SUSE Linux 11.4 =
 +
does not work with this stick, hwinfo does not show a line with "Driver".
 +
 
 +
= Knoppix 7.02 =
 +
# hwinfo --usb
 +
  Vendor: usb 0x0ccd "TerraTec Electronic GmbH"
 +
  Device: usb 0x00a8 "USB Stick"
 +
  Serial ID: "080116"
 +
  Driver: "dw2102"
 +
# ll /dev/dvb/
 +
total 0
 +
drwxr-xr-x 2 root root 120 Jul 7 22:53 adapter0
 +
sudo apt-get update
 +
sudo apt-get install w-scan
 +
 
 +
= See also =
 +
* [[watch tv]]
 +
* http://wirbel.htpc-forum.de/w_scan/index2.html - w_scan etc.
 +
* http://www.vdr-portal.de/board60-linux/board14-betriebssystem/board96-yavdr/108641-yavdr-0-4-pre2-und-cinergy-s2-usb-hd-firmware-upload-problem/ - dvbtune etc.

Revision as of 15:02, 7 July 2012

DVB-S is digital satelite TV.

I bought a set to watch digital satelite TV. TerraTec Cinergy S2 USB HD.

SUSE Linux 12.1

# hwinfo --usb
 Vendor: usb 0x0ccd "TerraTec Electronic GmbH"
 Device: usb 0x00a8 "USB Stick"
 Serial ID: "080116"
 Driver: "dw2102"

SUSE Linux 11.4

does not work with this stick, hwinfo does not show a line with "Driver".

Knoppix 7.02

# hwinfo --usb
  Vendor: usb 0x0ccd "TerraTec Electronic GmbH"
  Device: usb 0x00a8 "USB Stick"
  Serial ID: "080116"
  Driver: "dw2102"
# ll /dev/dvb/
total 0
drwxr-xr-x 2 root root 120 Jul  7 22:53 adapter0
sudo apt-get update
sudo apt-get install w-scan

See also