摘要: NetworkManger同pppoeconf其冲突,看来wicd才是解决之道啊。
阅读全文
For now, I didn't install the Chinese Input software, so using English instead.
It's a fresh system, and it (Ubuntu 10.10) looks great! During my installation, several issues occurred. Keep a note below, hope can help someone else interested in.
-1> Issue One:
When installing the system using USB drive, it had following error and can't log into the install screen:
Unknown Keyword in configuration file.Boot:Solution: change U:/syslinux/syslinux.cfg as following:(i.e. delete
ui in the file)
Restart and now we can enter into the install menu.
2>Issue Two:
When selecting install item, it has following error:
failed due to unknown user id(0)
can't open /dev/sr0: No medium found.
Solution: this is because my laptop has no floppy drive while the floppy drive is enabled in BIOS. Log into BIOS and disable the floppy drive. then try again.
摘要: 转载,算法的力量
李开复先生越来越成为我的偶像了。。。只恨相识太晚(单方面的相识),现在都已经毕业了啊,一些很有告诫性质的话没有及早的听到,不过,也不算晚。
阅读全文
There are the steps we should going to do...
假设你的gmail帐户为 accountname@gmail.com,其对应密码是gmailpassword。先在kmail里面添加gmail帐户:
1)添加gmail pop。打开kamil,进入 设置-配置kmail-accounts。在‘接收’选项卡里,点添加。然后选择类型为‘pop’,然后‘确定’。‘登录名’输入你的gmail电子邮件地址,比如accountname@gmail.com。‘密码’输入gmail密码。‘主机’输入pop.gmail.com。‘端口’输入995。在‘其他’选项卡里,加密方式选择‘使用安全的ssl连接下载邮件’,验证方式为纯文本。然后‘确定’。
2)添加gmail stmp。打开kamil,进入 设置-配置kmail-accounts。在‘发送’选项卡里,点添加。传送方式选择‘smtp’。然后确定。主机填写‘smtp.gmail.com’。端口'587'。选中,‘服务器需要验证’。然后填入你的gmail邮件地址和密码。在‘安全’选项卡里面,加密方式选择‘tls’。验证方式选择‘login’。
3)测试。你发送一封邮件到自己的gmail帐户,看看自己是否能够下载下来。
最近想开始学习stl,但是利用VC6.0进行编译的话,总会出现很多警告,而换用VS2005之类的,感觉太繁琐,为了建立一个空的控制台程序,要建立那么大一个文件,费得劲比较大,所以想着利用Linux中的gcc来编译,只要写一个.cpp的文件就可以了。可是对这个不是很了解,抄了一个文件进行编译,却出现好多的错误,可能是需要进行这样那样的设置的吧。特此立帖,希望达人能给我一些建议,如果可以能提供更好的编译器,那是更加的好了。谢谢先了
我用的sample
sample
#include <iostream>
#include <vector>
using namespace std;
main()
{
vector< vector<int> > vI2Matrix; // Declare two dimensional array
vector<int> A, B;
vector< vector<int> >::iterator iter_ii;
vector<int>::iterator iter_jj;
A.push_back(10);
A.push_back(20);
A.push_back(30);
B.push_back(100);
B.push_back(200);
B.push_back(300);
vI2Matrix.push_back(A);
vI2Matrix.push_back(B);
cout << endl << "Using Iterator:" << endl;
for(iter_ii=vI2Matrix.begin(); iter_ii!=vI2Matrix.end(); iter_ii++)
{
for(iter_jj=(*iter_ii).begin(); iter_jj!=(*iter_ii).end(); iter_jj++)
{
cout << *iter_jj << endl;
}
}
}
输出的错误:
[root@localhost Cpp]# gcc SampleVector.cpp
/tmp/ccJVmST1.o(.text+0x1ee): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char,
std::char_traits<char> >&)'
/tmp/ccJVmST1.o(.text+0x1fe): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char,
std::char_traits<char> >&)'
/tmp/ccJVmST1.o(.text+0x203): In function `main':
: undefined reference to `std::cout'
/tmp/ccJVmST1.o(.text+0x208): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))'
/tmp/ccJVmST1.o(.text+0x211): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'
……
诸如此类的错误,我该怎么办呢?
摘要: 不记得是哪次看书看到这个词,却不知道什么意思,后来google后,在Wikipedia中找到这个词的解释了,不过国内好像对这个网站采取的是block的政策,偶然的机会我打开了这个网页,现将之整理一下贴在下面,算是补充点知识吧。
但是对这个词的翻译怎么翻呢?希望知道的人给我顶一下
阅读全文