T*******x 发帖数: 8565 | 1 按照下面的教程。教程太简单了。卡在第二步fdisk上。
从来没用过fdisk,不知道怎么找flash drive。
我的是一个1G的usb flash drive,按照他给出的/dev/sda,不行。
然后configure partion 1 and 2,他都没给出命令。
高手指点一下吧。
1. Find your Pogoplug's IP address and connect via SSH:
username: root
password: stxadmin
2. Partition your flash drive.
fdisk /dev/sda
# Configure partion 1 as Linux (I recommend at least 512MB)
# Configure partion 2 as Linux Swap (256MB recommended)
3. Download and run the debian install script:
cd /tmp
wget http://projects.doozan.com/debian/docksta... 阅读全帖 |
|
a**********0 发帖数: 422 | 2 在我自己写map reduce的时候有时候写combiner 但是很少有机会写partiioner
具体用的顺序如何 map -> combiner -> partioner -> reducer
也就是说 combiner必须在partioner之前呢 |
|
l***i 发帖数: 11 | 3 use other partion utility ( like sfdisk.exe ..),or use
norton diskedit to edit the partion table directly. I met
this problems many times |
|
h*****n 发帖数: 439 | 4 哇,兄弟的方法 2 也忒麻烦了一点吧。还要 ghost 整个 XP ,好花时间。
用 Partition Magic 在硬盘上分出来一个 primary partion FAT32, 设成 active。
然后把 Windows XP 所在的 partition 设成 hidden 。然后按 Partition Magic
就重新启动进行操作了。完成后就用 Windows 98 的启动盘启动在新划分的 partition
安装 Windows 98 。
安装好之后用 Partion Magic 附带的 BootMagic 生成的启动软盘来启动系统,
重新把 Windows XP 所在的 partition 设成 active 。回到 Windows XP 修改
%SystemDrive%\boot.ini 加上 windows 98 一项。那以后这台机子就是双重启动
的啦。
我的机子就是三重启动的,windows xp, windows 2000, linux. 不过启动到 linux
的做法与这个有一点不同就是了。
当然用 Virtual PC 还是最简单的办法。
结果
星期 |
|
m*d 发帖数: 7658 | 5 先安装archlinux
instruction在这里
http://archlinuxarm.org/platforms/armv6/pogoplug-provideov3
如果不想写用arch的uImage覆盖nand
可以这样
Following steps 7 and 8 above, partition and format the drive (using the
correct /dev device, highly likely NOT sda). Download and extract the root
filesystem tarball onto the new ext3 partition as the root user, not just
sudo. Create a file at /usr/local/mac_addr and place in it your Pro's MAC
address (its on the bottom of the unit) in the format XX:XX:XX:XX:XX:XX.
Safely umount ... 阅读全帖 |
|
m*d 发帖数: 7658 | 6 先安装archlinux
instruction在这里
http://archlinuxarm.org/platforms/armv6/pogoplug-provideov3
如果不想写用arch的uImage覆盖nand
可以这样
Following steps 7 and 8 above, partition and format the drive (using the
correct /dev device, highly likely NOT sda). Download and extract the root
filesystem tarball onto the new ext3 partition as the root user, not just
sudo. Create a file at /usr/local/mac_addr and place in it your Pro's MAC
address (its on the bottom of the unit) in the format XX:XX:XX:XX:XX:XX.
Safely umount ... 阅读全帖 |
|
h**********c 发帖数: 4120 | 7 这种情况在win8下遇到过,好像是搜一个windows recovery dvd image
反正安装时候查你主板号,假的真不了,
能重新装一个白的win8,和你recovery partion 不一样,driver应用啥都要重装。
win7不肖得是不是一样。 |
|
|
|
B*****g 发帖数: 34098 | 10 不要忘了加入CINAOUG
http://www.mitbbs.com/article_t2/Database/31148641.html
【 以下文字转载自 Database 讨论区 】
发信人: zenny (素能), 信区: Database
标 题: 数据库讲座 ---- 得给Beijing mm 还债了
发信站: BBS 未名空间站 (Mon Mar 5 12:11:42 2012, 美东)
说好今年上半年讲两次的。 一直没有时间。
我想讲一次针对sql server 数据库开发者的。准备想到哪里就讲哪里。 或者大家可以
提问, 然后我来回答。 请不要提这个语句怎么写之类的问题, 我向来眼高手低, 没
能力给你写code。 你可以提类似: “为了毛bookmark scan 要避免”, ”Partion
table 咋用?" 类似的。
或者我想讲针对sql server 数据库管理员的。 后面这个呢内容很干燥, 有多干?
你可以去看看 "SQL Server 2005 Pratical Troubleshooting"。 我讲的只能是比那个
更干燥。
大家投票吧。 我这... 阅读全帖 |
|
f*********d 发帖数: 140 | 11 //我上个代码吧, 没有测试过, 有错误或者bug请指出。。。
//这里假设所有节点的值都不一样, 如果存在一样的节点值, 需要一点修改。。。
struct BSTNode {
BSTNode* left;
BSTNode* right;
int val;
}
//print open interval (min_val, max_val) in r
void PrintBST(BSTNode* r, int min_val, int max_val)
{
if(r == NULL) return;
if(r->val <= min_val) PrintBST(r->right, min_val, max_val);
else if(r->val >= max_val) PrintBST(r->left, min_val, max_val);
else {
PrintBST(r->left, min_val, r->val);
cout << r->vale;
PrintBST(r-... 阅读全帖 |
|
p*******8 发帖数: 344 | 12 1)一个数组,除了一个数只出现一次,其他都出现两次,找出这个数。经典题之一,
XOR就行了
2)很大一个文件,内存放不下,里面都是整数,有重复,求只出现一次的整数的个数
。应该是大数据吧,我就说了hash到多个小文件,保证一样的整数到同一个小文件,然
后依次读进内存用hashmap/hashset处理,面试官说如果所有数都一样,hash后还是一
个文件,我想了下想再hash一次,后来想干脆用hadoop搞,用两个job,第一个每个map
读进来,key是integer本身以及map task id,reducer负责输出这个task的unique的整
数,partioner根据integer和map id进行分配,然后第二个job把reducer设置成1个进
行合并。感觉杀鸡用牛刀了,但想不到啥其他方法
3)差不多的题,这次输出所有unique的数。我想了下先把所有一样的数hash到小文件,
如果小文件size还太大,再进行二次hash,根据文件size进行平均分配,然后处理每个
小文件,最后合并结果。
感觉2)3)答得不好,大数据以前就稍微看了下top k之类的,都是hashmap ... 阅读全帖 |
|
j*****y 发帖数: 1071 | 13 那道 map reduce 的题目,感觉是 partion数据的时候,要有 overlap是吧?
python |
|
j*****y 发帖数: 1071 | 14 比如看 7 个一组把, 就分成了 n/7 组,每组算一个median,
就出来 n/7个 median, 这 n/7个 median 数再找出 mdeian x
现在用 x 做 pivot 来 partion, 比 x 小的至多有 5n/7 个
比 x 大的至多有 5n/7 个
所以 T(n) <= T(n/7) + T(5n/7) + O(n)
T(n) = O(n)
现在看 3个一组, 同样的 idea 能得出
T(n) <= T(n/3) + T(2n / 3) + O(n)
这个时候你会发现右边的两个 sub-size 的和不比 n 小
它们是 n/3 + 2n/ 3 = n, 这个时候得不到 O(n)的解 |
|
|
j*****y 发帖数: 1071 | 16 过不了大的 case阿,
dp好像也快不了多少阿
dp[i] = min_cut for s[0,...,i] |
|
|
|
|
|
B********t 发帖数: 147 | 21 我写了一个,不过第一个判断回文的地方我不知道怎么用dp,还是说没法用?不过不改
变总的时间复杂度
class Solution {
public:
bool isPalindrome(string s)
{
int start = 0, end = s.size() - 1;
while(start < end)
if(s[start++] != s[end--])
return false;
return true;
}
int minCut(string s) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
vector dp(s.size(), INT_MAX);
vector> isValid(s.size(), vector<... 阅读全帖 |
|
|
B********t 发帖数: 147 | 23 我第一次写的是n^3的。话说上面代码里第一次判断palindrome能dp不。。 |
|
j*****y 发帖数: 1071 | 24 过不了大的 case阿,
dp好像也快不了多少阿
dp[i] = min_cut for s[0,...,i] |
|
|
|
|
|
B********t 发帖数: 147 | 29 我写了一个,不过第一个判断回文的地方我不知道怎么用dp,还是说没法用?不过不改
变总的时间复杂度
class Solution {
public:
bool isPalindrome(string s)
{
int start = 0, end = s.size() - 1;
while(start < end)
if(s[start++] != s[end--])
return false;
return true;
}
int minCut(string s) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
vector dp(s.size(), INT_MAX);
vector> isValid(s.size(), vector<... 阅读全帖 |
|
|
B********t 发帖数: 147 | 31 我第一次写的是n^3的。话说上面代码里第一次判断palindrome能dp不。。 |
|
f*****e 发帖数: 2992 | 32 感觉回文不用dp会更快。以每个letter/缝为中心向两边扫,也O(N^2)。不过不用全部
都扫到。 |
|
a*******3 发帖数: 27 | 33
re,枚举中心点是回文O(n^2)算法中最好写,而且是最省空间的。不过要注意回文的长
度可能是奇数也可能是偶数的。 |
|
c********t 发帖数: 5706 | 34 把 for(int j = 1; j <= i; j++)
改成 for(int j=i; j>=0; j--)
第一次判断palindrome还需要吗? |
|
|
|
r*****a 发帖数: 421 | 37 写了一个向两边扫的。
public int minCut(String s) {
int len = s.length();
int[] dp = new int[len];
Arrays.fill(dp, Integer.MAX_VALUE);
dp[0] = 0;
for (int i = 1; i< len; ++i) {
for (int j = i-1; j <= i; j++) {
int start = i-1;
int end = j;
while (start >= 0 && end <= len-1 && s.charAt(start) == s.charAt(end))
{
if (start == 0) dp[end] = 0;
else
dp[end] = Math.min(dp[end], dp[start-1] + 1);
start--;
end++;
}
}
if (d... 阅读全帖 |
|
j********r 发帖数: 25 | 38 参考了大牛们的, 写了一个自认为还算简洁的:
int minCut(string s) {
int m = s.length();
vector> palindromes(m, vector(m, false));
vector cuts(m,m);
cuts[0] = 0;
for(int i = 1; i < m; i++) {
for(int j = i; j >= 0; j--) {
if (s[i] == s[j] && (i-j <2 || palindromes[i-1][j+1])){
palindromes[i][j] = true;
if (j==0)
cuts[i] = 0;
else
... 阅读全帖 |
|
T*******e 发帖数: 4928 | 39 similar, C++ DP version.
int minCut(string s) {
int sSize=s.size();
if(sSize<2) return 0;
vector minCuts(sSize+1,0);
for(int i=0; i<=sSize; ++i) minCuts[i]=sSize-1-i;
vector > isPalindrome(sSize, vector(sSize, false));
for(int i=sSize-2; i>=0; --i) {
for(int j=i; j
if(s[i]==s[j] && (j-i<=2 ||isPalindrome[i+1][j-1])) {
isPalindrome[i][j]=true;
minCuts[i]=min(minCuts[i],minCuts[j+1]+... 阅读全帖 |
|
j********r 发帖数: 25 | 40 真是不比不知道, 你这个又比我的少了个if check! |
|
T*******e 发帖数: 4928 | 41 咱们差不多。我的比你多了一步initialization. |
|
j*******t 发帖数: 223 | 42 partitioner的作用就是对map过后的进行划分,用于确定在reduce端哪些kv pair放在
一个reducer里面(即在一个Iterator里面)。
要实现自己的partioner,需要继承Partitioner抽象类,并实现int
getPartition(KEY key, VALUE value, int numPartitions) 方法。hash是一个比较常
见的实现方法,一般情况下只有key会用到。 |
|
g****y 发帖数: 489 | 43 新买的Y450,C盘有>200G,D盘只有30G。怎么增加D盘容量?以前的Partion Magic不能
用了。
用Disk Manager分了100G出来,好像加不到D里去,也不能独立成另一个logic drive。
刚从XP省到Win7,很老土的说。。。 |
|
B*****g 发帖数: 34098 | 44 不要忘了加入CINAOUG
http://www.mitbbs.com/article_t2/Database/31148641.html
【 以下文字转载自 Database 讨论区 】
发信人: zenny (素能), 信区: Database
标 题: 数据库讲座 ---- 得给Beijing mm 还债了
发信站: BBS 未名空间站 (Mon Mar 5 12:11:42 2012, 美东)
说好今年上半年讲两次的。 一直没有时间。
我想讲一次针对sql server 数据库开发者的。准备想到哪里就讲哪里。 或者大家可以
提问, 然后我来回答。 请不要提这个语句怎么写之类的问题, 我向来眼高手低, 没
能力给你写code。 你可以提类似: “为了毛bookmark scan 要避免”, ”Partion
table 咋用?" 类似的。
或者我想讲针对sql server 数据库管理员的。 后面这个呢内容很干燥, 有多干?
你可以去看看 "SQL Server 2005 Pratical Troubleshooting"。 我讲的只能是比那个
更干燥。
大家投票吧。 我这... 阅读全帖 |
|
T*********r 发帖数: 11175 | 45 不过这些东西上手也都要些代价
我既有误format过也有误操作partion过
还好那年代也没什么有用的东西,重来也没什么 |
|
c******8 发帖数: 3170 | 46 【 以下文字转载自 Linux 讨论区 】
发信人: cherry88 (cherry), 信区: Linux
标 题: 紧急求助(有包子酬谢)
发信站: BBS 未名空间站 (Sun Jun 20 01:41:38 2010, 美东)
我有个acer笔记本,dual boot, windows vista & ubuntu 6.06
我想把ubuntu 6.06 删除,安装10.04的,谁曾想我的boot是从grub里到menu1.list,
vista也在那个文件里面。
我用partion magic 删除了ubuntu所在到partition,并把空间全都resize到C盘去了。
重新启动,可想而知,就出现了, grub reading, error loading 22.
这个error说的就是无法找到partition.
C盘文件还都在,就是没法启动, 我试过了bootmagic,不好使。
该怎么办?
谢谢大家! |
|
c******8 发帖数: 3170 | 47 windows xp 安装盘,我试过了, 只有install和repair两个功能, 没有command line.
我曾用过大陆带来到partion magic 软件, 可以到DOS指令下, 但fixmbr不好使。
我该怎么办?
包子随后发送, 谢谢
, |
|
l*******g 发帖数: 27064 | 48 你需要刻录一个光盘,你制作启动u盘的时候这个u盘可能被感染
国内有很多winpe启动的光盘rom
随便下一个就行,一般都没病毒
用这个刻录光盘启动以后,进入winpe界面,里面有命令提示符还是msdos
进去以后,format c: /mbr可以清理boot区域的病毒驻留
或者里面有专业的硬盘工具,pqmagic或者partion doctor之类的,里面也有修正选项
甚至你可以不动其他分区,直接把c分区干掉,重新创建
然后重新安装系统,注意安装系统全过程中不要打开其他分区盘符,直接上诺顿网站下
载个试用版装上,或者找类似网页查病毒的,把其他分区检查一遍再说 |
|
d******o 发帖数: 2489 | 49 Are you sure this will work ?
只要感染的物理硬盘没有封闭起来,木马就没有保证可以杀掉。
这个木马有较强的自我防护机制:
0) 感染随机驱动软件,双加密系统文件
1) 放出一个诱饵进程,同时聆听防毒、杀毒软件
2) 一旦感应到杀毒软件后,立刻灭掉杀毒进程并修改文件权限
I would extract all non-executable files and run a low level format of this
physical harddrive (not just logic partions) |
|
A****t 发帖数: 397 | 50 Try this:
Toshiba has added a hidden partion on the hard drive which contains the same
files on a recovery cd / dvd.
To reinstall your laptop to the factory settings / "out of the box" settings
, please follow these steps. It worked for me, and should work for you.
ALL DATA WILL BE ERASED ON YOUR HARD DRIVE IF YOU PROCEED. YOU WILL NEED TO
ENSURE THAT YOU HAVE THE POWER ADAPTER PLUGGED IN. DO NOT SWITCH OFF OR
RESTART YOUR COMPUTER DURING THIS PROCESS.
1) Hold down the power button for 10 (ten) ... 阅读全帖 |
|