v*****r 发帖数: 1119 | 1 3) use lsof or netstat, grep "test"
4) To add 1G swap on fly :
# dd if=/dev/zero of=/swapfile bs=1M count=1024
# mkswap /swapfile
# swapon /swapfile
a
out
the |
|
b***d 发帖数: 186 | 2 这儿人气旺些,借此地一问。
下面的是solaris 10
【 以下文字转载自 Unix 讨论区 】
发信人: beerd (beerd), 信区: Unix
标 题: 奇怪的swap,一部分不见了
发信站: BBS 未名空间站 (Wed Jan 5 13:24:03 2011, 美东)
bash-3.00# swap -l
swapfile dev swaplo blocks free
/dev/zvol/dsk/rpool/swap 181,1 8 1048568 1048568
bash-3.00# swap -s
total: 358208k bytes allocated + 159532k reserved = 517740k used, 368716k
available
swap -l 显示free有1048568 blocks,就是524284k,而
swap -s 显示free就只有368716k了。帮助里说swap -s包含了swap in disk device
and physical memory。也就是说avai... 阅读全帖 |
|
x***o 发帖数: 18 | 3 sth. to clarify:
Pagefile.sys is the Windows NT/2000 swapfile. Win386.swp is the
Windows 9x swapfile. Each is need by it's respective operating
system, and can't be deleted while using that system.
once heard about a small trick that can make Win98 use Pagefile.sys
instead of win386.swp.
add a line to [386Enh] section of system.ini:
[386Enh]
PagingFile=:\\Pagefile.sys
and remove (or rem out) a line with PagingDrive=... (if there)
reboot and kill win386.swp.
never tried, and doubt |
|
b***d 发帖数: 186 | 4 bash-3.00# swap -l
swapfile dev swaplo blocks free
/dev/zvol/dsk/rpool/swap 181,1 8 1048568 1048568
bash-3.00# swap -s
total: 358208k bytes allocated + 159532k reserved = 517740k used, 368716k
available
swap -l 显示free有1048568 blocks,就是524284k,而
swap -s 显示free就只有368716k了。帮助里说swap -s包含了swap in disk device
and physical memory。也就是说available的应该是free swap space in disk device
+ free swap space in physical memory。但是这里怎么还比disk上的free的都少?
我在另外一台系统里也发现这个问题:
bash-3.00# swap -l
swapfile ... 阅读全帖 |
|
g*********e 发帖数: 14401 | 5 本人ee 选了门操作系统课,也写过一些最简单的OS里的东西。
写mutex, conditional variable, monitor
写kernel thread, context swtich机制
写各种system call routine, fork, exec, exit
写简单的pageTable, 软件模拟TLB, process address space, 虚拟内存机制,
swapFile
写remote procedure call机制,简单的并行系统
觉得比那些ee的磁场高频通信原理, OS原理简单了好多个数量级。当然code
implementation还是花时间,但这只是体力劳动,谈不上难度。 |
|
d**e 发帖数: 6098 | 6 ☆─────────────────────────────────────☆
marius (youyou) 于 (Fri May 25 17:57:14 2012, 美东) 提到:
amfgl的中的两个onsite 在即, 一直觉得自己不笨,算法很来势,可今天看了网上的题库,都
快哭出来了。没几个会的, 更别提在5分钟内做出来了。感觉自己的脑子,已近被
wired成 EE了, 什么变换,去燥,自适应。。。什么问题都能很有得心应手, 但一碰
到permutation, sort, heap, tree, 一点思路都没有,绝对一个低智商的学生。
数学, 信号处理多学了没用, 最重要的就是那门离散数学只当了选修, 编译原理没
有深入。
啊, 很郁闷。。
☆─────────────────────────────────────☆
lclclclc (home) 于 (Fri May 25 18:13:58 2012, 美东) 提到:
amfgl like smart elementary school level candidates, you are over q... 阅读全帖 |
|
g**u 发帖数: 13 | 7 谢谢,我有了,不过我在安装mud (fy3 ) 在freeBSD 2.2.7上的时候
碰钉子了,谁能帮帮我?
下面是报错信息和config.fy3的前部分内容
% ./driver config.fy3 &
[1] 17313
% using config file: config.fy3
Initializing internal tables....
----------------------------------------------------------------------------
风云三(本地) (MudOS v21.7) starting up on FreeBSD - Sun Mar 21 16:58:10 1999
Connected to address server on localhost port 9990
adm/simul_efun/file.c line 20: Undefined function seteuid
adm/simul_efun/object.c line 57: Undefined function getuid
ad... 阅读全帖 |
|
g*****x 发帖数: 3283 | 8 先做个swapfile挂上,不然128mb内存bt很容易挂 |
|
|
f***s 发帖数: 257 | 10 我内存128m,swapfile用的1g,拷贝的文件是4g,速度20m+峰值,稳定18m+。
USB3.0可能还是有点意义把。我在电脑上测试,同意是接USB2.0的口,同样的硬盘,用
USB3.0的盒子,拷贝文件速度30m+,用老盒子才15M。 |
|
c********l 发帖数: 8138 | 11 神座不准备共享文件(因为另外有NAS)
因神座是linux系统,所以准备装Asterisk和OPENVPN服务器。
在打算安装Asterisk之前,先做了research,看到这么一篇文章
http://archlinuxarm.org/forum/viewtopic.php?f=29&t=1846&p=10192
We have asterisk in the repo, though it may be getting
a little old at this point.
The only ways to appreciably speed up package building are:
1. distcc compilations to a cross-toolchain on a fast x86 computer
2. run builds on a SATA attached drive, USB induces a ton of IO wait
3. create about a 1GB file in tmpfs (thus RAM) on the x86 host... 阅读全帖 |
|
c******n 发帖数: 16666 | 12 大内存真是爽 本来头2步都要1个半小时 因为16g满了就要去ntfs的swapfile里面来回
切换
现在10多分钟就好了。。 |
|
s*****m 发帖数: 13092 | 13 那你的swapfile和hibernate file多大 |
|
j****e 发帖数: 624 | 14 嗯,果然如你们所说。
hiberfil.sys 10G
pagefiles.sys 12G
swapfiles. sys 260M
请问这些文件是不是都不能去掉的?我想把C盘全盘复制一下,文件太多了是不是不好
?另外,有什么全盘复制的软件可以推荐的? 多谢 |
|
B*Z 发帖数: 7062 | 15 搞定了。首先samsung自己为了给ssd延寿,一开始就自动disable了hibernate。这个还
挺贴心。
其次我其实一开始就成功地把pagefile给转移到了ramdisk上面。(但是没有删除c盘的
pagefile。我记得在hdd上面是自动删除c盘的pagefile的。)我手动自己把c盘设置成
为没有pagefile就完事了。
但是奇怪的是,发现windows 10出来了一个swapfile。试了好几次,还挪不走这个东西
。太牛了。 |
|
v*****r 发帖数: 1119 | 16 swap 就不要单独分区了,用swapfile, 灵活,也没有performance suffer。 |
|
l*******e 发帖数: 309 | 17 楼上那位 用swapfile对休眠支持怎么样?我的不行 |
|
|
S*A 发帖数: 7142 | 19 Linux 可以 swap 到 文件系统的文件里面。但是不如
有专门的 swap partition 好。你如果用 LVM 的分区
的话也可以动态调整 swap partition。
在文件系统里面做 swap file 有很多不方便和复杂的
地方,所以不推荐。(文件系统本身也用 memory,写
swapfile 的时候有多一层的处理)。
Windows 里面的 swap file 也是不能随便移动的。
我如果用 LVM 的话我不觉得是什么大问题。 |
|
h******b 发帖数: 6055 | 20 我aws这个只是个没流量的小网站,外加mail server。 用codeigniter和iredmail。
加了swapfile还行。
如果要改db是不是要改现有代码?
还有好像linode评价非常高。 直接二十刀据说秒杀Amazon和digital ocean二十刀的产
品。 |
|
c********l 发帖数: 8138 | 21 【 以下文字转载自 Hardware 讨论区 】
发信人: coupondeal (coupon and deal), 信区: Hardware
标 题: Pogoplug(神座) 上如何安装Asterisk??
发信站: BBS 未名空间站 (Sun Dec 18 02:13:32 2011, 美东)
神座不准备共享文件(因为另外有NAS)
因神座是linux系统,所以准备装Asterisk和OPENVPN服务器。
在打算安装Asterisk之前,先做了research,看到这么一篇文章
http://archlinuxarm.org/forum/viewtopic.php?f=29&t=1846&p=10192
We have asterisk in the repo, though it may be getting
a little old at this point.
The only ways to appreciably speed up package building are:
1. distcc compilations to a cross-toolchain ... 阅读全帖 |
|