| Su | Mo | Tu | We | Th | Fr | Sa |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Backing up and restoring over the network
Backups allow you to restore the availability and integrity of information resources following security breaches and accidents. Without a backup, you may be unable to restore a computer's data after system failures and security breaches. It is important to develop a plan that is broad enough to cover all the servers you plan to deploy. We must determine what categories of files will be backed up. For
Bash shell script how to add today’s date
Date command is use to print or set the system date and time under
Linux/Unix like operating systems. However some time you need to
include today’s date in shell script. You need to use command
substitution in your shell script to display today’s date. Bash/sh
shell performs the expansion by executing command and replacing the
command substitution with the standard output
of the command, with any trailing newlines deleted. Command
substitution allows the output of a command to replace the command
name. You can use following syntax:
$(command)
OR
`command`
Bash shell script tip: Run commands from a variable
There are many situations in which you may want to run different command in your shell script depending on requirements and circumstances. So how do you select and run a command?
The old way…
The old way is use the case statement or if..else..fi command. For example:
#!/bin/bash
if [ this -eq that ];then
command1
else
command2
fi
The new way…
BASH allows you to assign or store a command name in a variable. For example create a variable called CMD:
Missing library for installing Java on CentOS
error: Failed dependencies:
libXp.so.6()(64bit) is needed by java-1.5.0-sun-1.5.0.11-1jpp.x86_64
Suggested resolutions:
/home/buildcentos/CENTOS/en/4.0/x86_64/CentOS/RPMS/xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.x86_64.rpm
Run this:
yum install xorg-x11-deprecated-libs
HowTo Install Java on CentOS 4 and CentOS 5
*This HowTo is not complete yet.
There are several ways to get a Java Virtual Machine installed on CentOS 4 or 5. The requirements for having a "Java environment" are different between servers and desktop users. Often desktop users need Java only to execute a few programs (including Java applets inside Mozilla Firefox).
利用FCS做视频录制的带宽需求
其大致的算法是:
视频宽度 x 视频高度 x 播放速率 (fps) = 总的带宽( bits/sec)
但是要注意的是,在使用FCS录制的时候,使用的是Bps,而不是kbps,要转换(8 bits =1 byte )
打开比方,使用320×240的视频窗口以30fps的速率录制,其带宽消耗计算:
320 x 240 x 30 fps = 2.3 Mbps = 288,000 Bps
Breeze Screen Share
Yes, of course.
The code is taken from the error from FlashComm help. When MM released
FCS they forgot to delete the help about screensharing, it's not indexed
but if you click next arrow continuosly you'll find some pages that are
not on the index:
<code>
var cam = Camera.get("Screen");
video_instance.attachVideo(cam);
</code>
If you compile this you'll get a compiler error. Just compile for AS1 or
change the intrinsic class of Camera. Change the line:
<code>
有关FMS(FCS)设置
有关FMS(FCS)设置
(转载自闪客帝国)
[原文出处]
http://www.adobe.com/devnet/flashcom/articles/opt_videoconf.html
System.Product用法小结
//下载Breeze插件
var myDownLoad = new System.Product("BreezeAddIn");
//var myDownLoad = new System.Product("BreezeAddIn5x0");
//下载Central
//var myDownLoad = new System.Product("Central");
//下载最新插放器
//var myDownLoad = new System.Product("fpUpdatepl");
//下载最新插放器插件
//var myDownLoad = new System.Product("fpUpdateax");
myDownLoad.onStatus = function(info) {
关于桌面共享
用过Breeze的朋友都知道,它是支持screenSharing的,那它又是如何工作的呢?
通过查找资料,笔者对此有了一些了解,今天写出来,与大家分享。。。
第一步,下载BreezeAddIn播放器,代码如下:
myDownLoad = new System.Product("BreezeAddIn");
myDownLoad.download();

Recent comments