j******y 发帖数: 180 | 1 outfile.open("xxx") will search the local directory for xxx. If exists, it
will be successful, else it will create a new one. Then you can run your code
successfully. The only possible issue is the directory does not exists or you do not have the privilege to create.
So, no problem with your code.
If you are under linux, use chmod to make writable. |
|
b*****e 发帖数: 223 | 2 有些 documentation 文件比如 .xls 格式的,我都在 windows 上更新,但是这样它就
变成 rw only for me 了,每次我还要哼哧哼哧在 linux 再 chmod。
可不可以在 linux 上直接更新比如 .xls?
有没有什么好的办法啊 |
|
r****r 发帖数: 1693 | 3 chmod to 700, then only readable to your personal account. |
|
m**********e 发帖数: 12525 | 4 在unix下工作,想玩的先去下面站点下载安装expect:
http://expect.nist.gov/
然后就可以在perl下运行了
这个版本是从5685贴开始自动回复,到5707贴为止,有兴趣的
自己改改
expect是我认为最适合干这种事情的script语言,简单高效,要理解
只需看下面就是了:
[ -re=>'请输入密码: ',
sub
{
my $exp = shift;
get_pass();
$exp->send("$pass\r");
exp_continue;
}],
也就是说你的spawn的telnet进程看到'请输入密码: ',就执行get_pass()
把下面文件存为x.pl, chmod u+x x.pl,然后运行 x.pl mitbbs.com
----------------
#!/usr/bin/perl
use warnings;
use IO::Socket;
use Expect;
my @serv_ip;
my $serv_port;
my $user;
my $pass;
my $buf;
my $boar |
|
|
发帖数: 1 | 6 注意:RP正在剧变中,现在所有Ad计划都正在取消,Mad计划中原有的BBQ也可能取消。
取而代之的是限额较低的拨号器计划。
等RP尘埃落定后在修改攻略。
A. Ringplus简介:
Ringplus(R+)是Sprint的虚拟运营商(MVNO)。
Sprint信号好的地方Ringplus信号就好,
我个人的使用经验是Sprint信号跟ATT相当,比TMobile好,
没用过Verizon,不知道效果如何。
R+的特色是免费或低价的计划,如果选得好,电话,短信,和流量都够用。
R+号称之所以能免费或低价, 是因为他们使用了独家技术,可以投放广告。
我觉得他们投放的广告收益远不能维持这些免费或低价计划。所以R+能撑多久是个问题。
R+语音质量跟计划相关,在后面详细介绍。
个人认为RP的Ad计划一定不能用作主力电话服务。
RP的MAD计划可以作为主力电话服务。
R+的客服很差,电话基本打不通,有问题可以在论坛问,或者卡ticket。
R+也有在线chat, 但很难等到。
R+详细情况请看:
https://ringplus.net/
B. R+计划比较:
R+有4类计划。
1. 免费Mad... 阅读全帖 |
|
|
|
|
e*i 发帖数: 10288 | 10 我来总结一下吧。 Credit to everseen @ mitbbs.com
1 用 $5 的 Raspberry Pi 0 W 配合没有图形界面的 raspbian 即可,MicroSD 卡只要
2GB 即可。
2 sudo apt-get install linphone
sudo apt-get install alsa-utils alsa-oss
sudo modprobe snd-dummy
3 写一个 script,命名为 jzer,内容大致如下: (FP 是个鸡贼公司,我们要比它更
鸡贼,因此文件名为 jzer)
linphonecsh init
sleep 2
linphonecsh register --username account01 --host fp.layered.net --password
password01
sleep 5
linphonecsh dial "sip:[email protected]"
sleep 10
linphonecsh hangup
linphonecsh register --username a... 阅读全帖 |
|
q********g 发帖数: 10694 | 11 作者:linldq
相关搜索: linux, 安装
1安装系统,注意阅读在压缩包中的README_Materials_Studio.htm这个文件,这个文件
里包含里安装ms4.4所需要的操作系统环境。就是要安装类似以下的系统补丁包
glibc-32bit-9-200710191304
hpmpi-2.02.05.01-20070708r.x86_64
libgcc-3.3.3-43.54 (32-bit and 64-bit)
libstdc++-3.3.3-43.54 (32-bit and 64-bit)
这些包都要一定要装上去, hpmpi-2.02.05.01-20070708r.x86_64 这个一般是在MS得
安装盘上有。
2、安装MS4.4 ,我创建的个人用户是msi 在msi下建temp文件夹把软件拷到temp里
3、修改权限,chmod –R 755 UNIX,进入temp/UNIX,执行./Install
4、选择完全安装,
5、安装修改过得license,放到和windows版本类似那个license文件夹里
6.启动license 路径:…./Accelrys... 阅读全帖 |
|
c*****d 发帖数: 6045 | 12 手头sd卡最大是2g的
看网上的经验3g空间都紧张
所以想把一个40gb的笔记本硬盘通过usb挂到dockstar上
先是把文件从笔记本硬盘拷到另外一张硬盘上
拷了一个上午。。。
disable WAN on router, connect dockstar to router, find IP address of
dockstar, ssh to dockstar
登录后执行
killall hbwd
mount -o remount,rw /
chmod go+w /dev/null
cat "killadd hbwd" >> /etc/init.d/rcS
mount -o remount,ro /
/sbin/reboot
一切正常
connect hd to dockstar through usb
执行/sbin/fdisk /dev/sda
重新partition笔记本硬盘
保存partition table
确认一下
/sbin/fdisk -l /dev/sda
问题来了,提示device is not available
/sbin/reboot之后发现分区表根本... 阅读全帖 |
|
c**y 发帖数: 2282 | 13 我的错,我把旧的conf文件拷贝过来忘记了chown或者chmod什么的 |
|
C*******1 发帖数: 422 | 14 前几天看到北美wsn打分标准,我觉得应该加上几条:
. 喜欢折腾voip的,+1分
. 趁deal买了dockstar并乐此不疲地折腾的, +2分
hehe。
个人觉得freeswitch还比*还好些,具体理由可放狗搜一下。
闲话少说。刚刚用了大概2个小时装上了OpenWRT + Freeswitch。现在把笔记贴在这儿
,如果按
照这个笔记装的话,耗时应该少于1小时。算是回馈本版,也为我的笔记找个好地方存
一下,免得硬盘
崩溃的时候全都搞丢。
因为是笔记,用的是简单且烂的英文,请多担待。
=============================================================
You need:
A Linux computer ( I use CentOS) <- [do not need this if do step 3 on
Dockstar]
A USB flash drive (200M or bigger)
Internet connection with a router (I have a Tomato router).
1. Ki... 阅读全帖 |
|
|
f*u 发帖数: 5576 | 16 This is step by step dummy guide to install and config google voice in RT-
n16, there is also nonoh dialplan sample so you can set to make calls to
China.
It works perfectly with RT-N16, it may also work on other routers with some
modification.
You can make/take free phone calls through US and Canada through Gtalk directly,
sipgate, sipsocery, call parking etc are no longer needed :)
If you have nonoh setup, you can also dial 01186xxxxxxxxx to China.
Enjoy.
1. Install asterisk18 server; Login yo... 阅读全帖 |
|
|
|
e*i 发帖数: 10288 | 19 actually, you don't need to download those two files.
there was one S90asterisk under /opt/etc/init.d already
after you install all these things.
All you need to do:
#chmod 0755 /opt/etc/init.d/S90asterisk
next time, it should be ok. |
|
f*u 发帖数: 5576 | 20 April 5 update: replace RT-N16 with E3000, this guide still works
This is step by step dummy guide to install and config google voice in RT-
n16, there is also nonoh dialplan sample so you can set to make calls to
China.
It works perfectly with RT-N16, it may also work on other routers with some
modification.
You can make/take free phone calls through US and Canada through Gtalk directly,
sipgate, sipsocery, call parking etc are no longer needed :)
If you have nonoh setup, you can also dial 0118... 阅读全帖 |
|
|
|
e*i 发帖数: 10288 | 23 actually, you don't need to download those two files.
there was one S90asterisk under /opt/etc/init.d already
after you install all these things.
All you need to do:
#chmod 0755 /opt/etc/init.d/S90asterisk
next time, it should be ok. |
|
l*******e 发帖数: 3584 | 24 在移动硬盘里删了原来的分区,重新做了两个,都是主区,一个ETX2一个SWAP
sbin$ mke2fs -T etx2 /dev/sda1
sbin$ mke2fs -T swap /dev/sda2
/sbin/fdisk /dev/sda
Device Boot Start End Blocks Id System
/dev/sda1 * 1 480 3855568+ 83 Linux
/dev/sda2 481 600 963900 83 Linux
cd /tmp
wget http://jeff.doozan.com/debian/dockstar.debian-squeeze.sh
chmod +x dockstar.debian-squeeze.sh
export PATH=$PATH:/usr/sbin:/sbin
./dockstar.debian-squeeze.sh
结束后选N
改interfaces
重启后同样的问题,启动到移动硬... 阅读全帖 |
|
|
|
a9 发帖数: 21638 | 27 你那个-c参数是指的以控制台方式运行。你退出ssh当然就关掉了。
你去掉-c让它以默认的daemon方式运行就好了。
自动启动需要启动代码。你在tomato下的话,首先看/opt/etc/init.d下面有没有一个
SXXasterisk文件。其中XX一般是一个两位的数字。
另外就是要执行这个文件启动。tomato有两种方式。
你可以在/opt下创建一个.autorun文件。内容是
#!/bin/sh
if [ -d /opt/etc/init.d ]; then
for f in /opt/etc/init.d/S* ; do
[ -x $f ] && $f start
done
fi
另一个方式是在/opt/etc/config目录下,搞一个wanup文件。内容也是如上内容。
注意用chmod +x /opt/.autorun让其可执行。
close
think
start
asterisk |
|
e**********i 发帖数: 108 | 28 thanks a lot for your help.
I do have S50asterisk under init.d
so this is what i need to do
copy your scripts into a txt and save as .autorun
put it under init.d
SSH login, and do #chmod +x /opt/.autorun
reboot router
does this sound right? |
|