Views

Difference between revisions of "Screenshots from OpenStage Phone Display"

The Wiki of Unify contains information on clients and devices, communications systems and unified communications. - Unify GmbH & Co. KG is a Trademark Licensee of Siemens AG.

Jump to: navigation, search
Line 19: Line 19:
 
* IP-Address Phone:
 
* IP-Address Phone:
  
'''1. Software preparation:'''
+
== Software preparation ==
  
 
* Download and Install Putty
 
* Download and Install Putty
Line 28: Line 28:
 
Remark: Be sure, that the plugins for irfanview are installed. Otherwise the raw format can not be read.
 
Remark: Be sure, that the plugins for irfanview are installed. Otherwise the raw format can not be read.
  
'''2. Start the TFTP server:'''
+
== Start the TFTP server ==
  
 
[[File:Screenshots from OpenStage Phone Display 01.png|200px]]
 
[[File:Screenshots from OpenStage Phone Display 01.png|200px]]
Line 37: Line 37:
 
* File transfer directory: C:\FTPD
 
* File transfer directory: C:\FTPD
  
'''3. Enable the SSH access at the phone:'''
+
== Enable the SSH access at the phone ==
  
 
[[File:Screenshots from OpenStage Phone Display 02.png|300px]]<br/>
 
[[File:Screenshots from OpenStage Phone Display 02.png|300px]]<br/>
Line 47: Line 47:
 
* Session minutes: Set to 60 minutes
 
* Session minutes: Set to 60 minutes
  
'''4. Enable the SSH access at the phone:'''
+
== Open a terminal session to the phone ==
  
 
Use the SSH client to connect to the phone.  
 
Use the SSH client to connect to the phone.  
Line 59: Line 59:
  
 
An open terminal session is present after successful login.
 
An open terminal session is present after successful login.
 +
 +
== Screeshots ==
 +
 +
=== Manual screenshots ===
 +
 +
OpenStage 15/20/40/60/80:
 +
 +
# Copy the frame buffer of the screen into a file: <code>cat /dev/fb0 > /tmp/screenshot.raw</code>
 +
# Transfer the File to the PC: <code>tftp -pl /tmp/screenshot.raw -r screenshot.raw 172.28.133.107</code>
 +
 +
=== Automatic screenshots ===
 +
 +
OpenStage 15/20/40/60/80:
 +
 +
This mode is useful, if you need more than one screenshot of the phone. The screenshots are made with a small shell script, which automatically transfers the file to the PC. Unique file names are auto-matically generated.
 +
 +
Shell Script scrsh.sh:
 +
 +
FN=os80ss$(date +%Y%m%d-%H%M%S).raw
 +
cat /dev/fb0 > /tmp/$FN
 +
tftp -pr $FN -l /tmp/$FN 172.28.133.107
 +
 +
# Copy the script to the phone: <code>tftp -gr scrsh.sh 172.28.133.107</code>
 +
# Make the script executable: <code>chmod 777 scrsh.sh</code>
 +
# Make screenshot: <code>./scrsh.sh</code>

Revision as of 08:32, 12 July 2010

Software Requirements

Following software is necessary for making OpenStage screenshots:

Making a screenshot on OpenStage is a little bit tricky. You need some experience in network technologies. But once configured the making of screenshots is quite easy and can be done whenever you want. The following description is a step by step manual following an example configuration.

  • IP-Address PC: 172.28.133.107
  • IP-Address Phone:

Software preparation

  • Download and Install Putty
  • Download and Install tftp32
  • Download and install irfanview
  • Download and install irfanview Plugins

Remark: Be sure, that the plugins for irfanview are installed. Otherwise the raw format can not be read.

Start the TFTP server

Screenshots from OpenStage Phone Display 01.png

Files can be up- and downloaded from/to the phone by using tftp. The server shows the listening IP address and the files directory.:

  • IP Address of the TFTP server: 172.28.133.107
  • File transfer directory: C:\FTPD

Enable the SSH access at the phone

Screenshots from OpenStage Phone Display 02.png
SSH access configuration

  • Enable Access: Activate the SSH session = Yes
  • Session Password: Login password for the SSH session, example: 123456
  • Access minutes: Set to 15 minutes
  • Session minutes: Set to 60 minutes

Open a terminal session to the phone

Use the SSH client to connect to the phone. The user name for ssh access is always admin. Please use the configured password for login.

  • User: admin
  • Password: 123456

Screenshots from OpenStage Phone Display 03.png
Successful SSH Login

An open terminal session is present after successful login.

Screeshots

Manual screenshots

OpenStage 15/20/40/60/80:

  1. Copy the frame buffer of the screen into a file: cat /dev/fb0 > /tmp/screenshot.raw
  2. Transfer the File to the PC: tftp -pl /tmp/screenshot.raw -r screenshot.raw 172.28.133.107

Automatic screenshots

OpenStage 15/20/40/60/80:

This mode is useful, if you need more than one screenshot of the phone. The screenshots are made with a small shell script, which automatically transfers the file to the PC. Unique file names are auto-matically generated.

Shell Script scrsh.sh:

FN=os80ss$(date +%Y%m%d-%H%M%S).raw
cat /dev/fb0 > /tmp/$FN
tftp -pr $FN -l /tmp/$FN 172.28.133.107
  1. Copy the script to the phone: tftp -gr scrsh.sh 172.28.133.107
  2. Make the script executable: chmod 777 scrsh.sh
  3. Make screenshot: ./scrsh.sh