- 浏览: 13828 次
- 性别:
- 来自: 济南
最新评论
文章列表
整个过程其实算是很简单了,大体步骤,请参考这里即可:samba实现ubuntu跟windows文件共享
http://spiritfrog.iteye.com/blog/216768
看完后,也知道,只是去安装一下samba相关的东东:
sudo apt-get install samba samba-client samba-common
就可以正常安装samba服务了。
安装完毕后,去找了个文件夹,点击右键选择“共享选项”,然后去设置共享的时候,但是出现错误
"执行子进程“testparm”失败(没有那个文件或目录) ...
我自己的samba配置文件
- 博客分类:
- samba
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# For a step to step guide on installin ...
samba server的配置文件在/etc/samba/下的smb.conf打开一个终端中输入: gedit
/etc/samba/smb.conf
也可以用vi编辑.由于文件太长,我把个人认为没有用的东东删除了,主要是一些注释.下面偶解释一下主要字段的意思.由于我的这个文件配置过了,可能你的
机器和我的不一样.
======================= Global Settings =====================================
[global] //设置samba服务整体环境
workgroup = hackase //设置 ...
FFmpeg实现音视频文件合并
最近需要用到将得到的音视频文件进行合并,查找资料发现FFmpeg是个非常不错的开源软件。简单几条命令行就能实现大用途。现将自己写的代码贴出来,以免再次翻找资料浪费时间。
我是做Java的,属刚入门,希望大家多批评指正,共同进步,谢谢。
关于FFmpeg的命令行,可以查看我的另一篇文档:http://zk461759809.iteye.com/admin/blogs/1636634
public boolean mergeFile(File file) {
//合并文件
//头一个file为 ...
Libav(FFmpeg) 资料总结
FFmpeg官方网址:http://ffmpeg.org/
FFmpeg官方文档网址:http://ffmpeg.org/ffmpeg.html
本文摘自维基百科 地址:http://zh.wikipedia.org/wiki/Libav
Libav
(旧称:FFmpeg
)是一个
自由软件,可以运行音频和视频多种格式的录影、转档、流功能,包含了libavcodec ─这是一个用于多个专案中音频和视频的解码器库,以及 libavf ...