由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - a script for firefox using memory
相关主题
发狠了firefox sync 一问
ubuntu里的firefox有问题?还是mitbbs有问题?多登录firefox的问题
google chrome不爽的地方装了Firefox 4正式转向chrome
有没有人遇到过这个问题?(firefox)mount 一问
快被firefox和java逼疯了问个mount的问题
linux下firefox怎么越做越差了?fstab里面users和uid,gid不能一起用吗?
Firefox 4 RC 不错偶也请教一个linux下vm的问题
firefox 5 六月就出。。。?能不能同时有多个fstab文件, 启动时,可以选择
相关话题的讨论汇总
话题: profile话题: firefox话题: home话题: unpacked话题: mozilla
进入Linux版参与讨论
1 (共1页)
E*V
发帖数: 17544
1
#!/bin/bash
# Change this to match your correct profile
PROFILE="sdasflw8i.default"
cd "${HOME}/.mozilla/firefox"
if test -z "$(mount | grep -F "${HOME}/.mozilla/firefox/${PROFILE}" )"
then
mount "${HOME}/.mozilla/firefox/${PROFILE}"
fi
if test -f "${PROFILE}/.unpacked"
then
tar --exclude '.unpacked' -cpf packed.tmp.tar "$PROFILE"
mv packed.tar packed.tar.old
mv packed.tmp.tar packed.tar
else
tar xpf packed.tar &&\
touch "${PROFILE}/.unpacked"
fi
E*V
发帖数: 17544
2
you need to modify /etc/fstab

【在 E*V 的大作中提到】
: #!/bin/bash
: # Change this to match your correct profile
: PROFILE="sdasflw8i.default"
: cd "${HOME}/.mozilla/firefox"
: if test -z "$(mount | grep -F "${HOME}/.mozilla/firefox/${PROFILE}" )"
: then
: mount "${HOME}/.mozilla/firefox/${PROFILE}"
: fi
: if test -f "${PROFILE}/.unpacked"
: then

E*V
发帖数: 17544
3
like this
firefox /home/yourid/.mozilla/firefox/sdflasdfasf.default tmpfs size=128M,
noauto,user,exec,uid=10000,gid=1000 0 0

【在 E*V 的大作中提到】
: you need to modify /etc/fstab
a*****i
发帖数: 4391
4
What does this do???
E*V
发帖数: 17544
5
用内存啊,不用硬盘缓存。
速度快

【在 a*****i 的大作中提到】
: What does this do???
1 (共1页)
进入Linux版参与讨论
相关主题
能不能同时有多个fstab文件, 启动时,可以选择快被firefox和java逼疯了
一个关于sort的奇怪问题linux下firefox怎么越做越差了?
猪头 IT 啊!Firefox 4 RC 不错
谁有matlab的linux版本阿firefox 5 六月就出。。。?
发狠了firefox sync 一问
ubuntu里的firefox有问题?还是mitbbs有问题?多登录firefox的问题
google chrome不爽的地方装了Firefox 4正式转向chrome
有没有人遇到过这个问题?(firefox)mount 一问
相关话题的讨论汇总
话题: profile话题: firefox话题: home话题: unpacked话题: mozilla