修复failed to write cache错误
[转]自己动手提高ubuntu/Linux系统的性能(二)

[转]自己动手提高ubuntu/Linux系统的性能(一)

獨立的圓 posted @ 2008年1月19日 05:30 in Linux with tags linux , 8703 阅读

 本站文章已轉移,敬請移步:http://www.xxb.me/ ,謝謝!

在每一个基本的系统中,都包含有各种各样的基本进程,用于检查系统服务,和操作系统通信等等。进程和系统的性能表现有着很大的关系,因此,一个系统 管理者应该清楚了解当前系统中正在运行什么东西,有什么资源可用等等,只有这样,你才能够调整配置,例如,禁止不需要的进程,打开必须的监护程序以及将你 的内核调整到最优化,最后得到一个最适合自己使用的最好的系统。Ubuntu是一个为大众设计的系统,这也就决定了其系统设置的大众化,换句话说,臃肿 化。为了适应兼容性而支持的很多东西,我们其实不一定需要。在这里,笔者试图讲解一些通过调整内核参数,shell参数以及特定应用的设置来优化系统的方法,供大家参考。需要注意的是,不同的ubuntu系统有着不同的启动脚本,并有着不同的运行进程,这里我只能以7.04系统为基础来讲解。其实自己学会 对进程进行追踪查看是非常重要的,只有这样你才能在不同的系统中都游刃有余。另外,如果要更加深入调整系统,那么自己编译一个属于自己的系统是最合适的, 本文没有牵涉这么深入的东西。如果你对自己编译linux系统感兴趣,可以参考这篇文章这篇文章

本文假设你有一点点基本使用linux的基础,所以很多东西只是讲一个概念性的大纲,想深入了解的话,网络上有很多文章。如果你是系统高手,基本就 可以不用看本文了,你会觉得很简单,如果你是连ps,who -r都不知道的新手,建议你还是先放google搜索一些入门文章,并亲自使用linux一周以上,再回过头来看这篇文章。本文很大程度上参考了Ubuntu Performance Guides,篇幅较长,故分两页发出。

基础知识

理解进程

进程简介

刚才就几次提到进程,那么,我们应该怎么理解这个词语?广泛得说,所有在系统中运行的,用于执行各种各样任务的,都是一个进程,只不过根据具体执行任务的不同可以有所区分,例如,用于管理和维持操作系统运行的属于系统进程,而用于处理用户需求的就是用户进程。

进程并不是一个独立的概念,它是相互交互的,很多进程都为其他进程提供服务,或者携手共同完成某一个功能。这些服务中,有一些对于系统的运作是非常 关键的,例如X-Windows服务。绝大多数的系统进程都是服务性质的进程,而绝大多数用户进程则是应用程序类进程。应用程序,比如你现在在使用的 FireFox(或者其它,估计FF最多吧)通常是由一个或多个满足用户需求的进程组成。总的来说,服务的开启和关闭是基于系统需求的,而应用程序的开启 和关闭,则是基于用户的需求的。

我们上面说的这些进程阿,服务阿啥的,其实之间的区分并不是很明显,举个例子,Gnome的桌面系统就是由各种程序和进程组成,而他们不仅提供其它程序需要的服务,还可以支持用户的需求。GDE完全可以被称为是程序,进程,应用和服务的集合体,这不会产生任何冲突。

当然,我们还是要稍微做一下区分,后面才方便继续讲解。现在就统一一下,进程表示任何可以产生运行中的进程标志符的东西,程序则表示能产生进程的可执行文件。用户能够直接使用应用程序,而操作系统才使用服务。

进程基本操作

在你的机器上,唯一能够消耗你资源的就是正在运行的进程。如果当你发现自己的系统突然很慢,运行不正常时,通常只有两个可能,一种是某些进程运行异常,另一种就是某些进程所消耗的资源已经大于你所拥有的资源。

当然,想看看什么东西正在你机器上运行其实很简单,使用ps -aux或者top命令即可,这些东西资料很多,我就不多说了,实在不行man top或者man ps吧。当然,对于初学者来说最方便的还是利用图形化界面的系统监视器,如图:

screeshot(点击缩放)

所有信息都尽显眼前。注意,在系统监视器中,你不仅能看到进程运行情况,还能看到磁盘使用,CPU使用等很多有价值的信息,这些信息是接下来的部分可能用到的。

ok,现在我们知道,如果系统异常,如何去确定是什么进程异常了。但是接下来该怎么处理呢?无论是命令行还是图形界面显示,你都可以看到每一个进程 都有属于自己的ID,也就是PID。它们都是进程的句柄,而不是表示真实的进程。这有什么区别?对于一个拥有多线程的进程来讲,可以让所有的线程都拥有同 一个句柄,也可以让每一个线程都拥有一个句柄。太专业了?恩,通俗来讲,这就相当于……进程的身份证,我们通过它来标志进程。这个东西在ubuntu中默 认可以有32768个不同的PID,每有一个新的进程,就分配一个当前未用的PID给它。

好了,让我们找到那个让我们系统变慢的该死的罪魁祸首,看看它的PID,然后用kill PID命令来关闭它。等等,你确定就是这个进程影响了你的系统?你确信没有错杀好人?好吧,其实可以先用kill -stop PID命令来暂停一个进程,看看没有了它,我们的系统是否正常。如果发现了冤假错案,没关系,kill -cont PID能让进程继续工作。

除了直接使用kill PID之外,我们还有更进一步的kill进程的办法。kill PID仅仅是发出一个TERM信号,然后进程能捕捉这个信号,开始释放资源,关闭程序,这不是一下子就完成的,因此在关闭程序之前,你可以结束打开的文件 和完成正在做的任务。但是这导致一个问题,假如进程正在进行作业而且不能中断,那么进程可以忽略这个SIGTERM信号,而且如果进程失去响应了怎么办? 别急,我们还可以试一试kill -1 PID命令,这个命令发送的是hang up信号,含义是“中止信号”,它告诉进程,终端已经被kill了。但这个信号同样只被运行良好的进程所拦截。假设这两种方式都无法结束进程,那么只能使 用kill -9 PID了。这个命令发送的是真正的kill信号,对于这个信号,进程是不能忽略的。 这是一个“我不管您在做什么,立刻停止”的信号,也就是说进程立刻被终止,不实施清理操作。

信号是用来与守护程序和进程通信的。任何活动任务都是一个进程,而守护程序是等待对某些事件做出反应或者按照日程安排执行任务的后台服务。一个程序 必须有建在其中的信号处理程序用于捕获和应答信号。在LINUX中的signal参考指南解释了各种不同信号和这些信号的用途。常用的信号除了上面介绍的 以外,还有INT,CHLD等。

进程操作进阶

当然,仅仅了解上面的知识,对于对进程的理解,还是不够的。下面,我会介绍更多的关于进程的知识。

首先,我们需要知道,并不是所有的进程都会被动态分配PID,至少有两个进程不会,就是kernel和init。kernel进程的PID是0, 一直是0,而且你无法从ps,top这些命令中看见它,当然,也无法用kill命令来终止它。init进程是主父进程,什么意思呢?每一个进程都需要一个 父进程来监管它,父进程的作用就是接受子进程的返回值和状态值。而如果任何一个进程的父进程被终止,init就会成为它的父进程。init进程的PID固 定是1,从理论上讲,你也可以终止它,但是千万不要试图这样做,因为它是用来清除呆死进程的,一旦将其kill,系统最终将崩溃。

除了他俩,还有一些进程是你不应该kill的,包括Zombies,/O Bound—A和Interception。事实上,我们很少解除这几个进程,普通用户也没必要接触它们,因此,在这里我不会详细解释它们的用途,有兴趣的朋友可以自己google。

其它进程,在保证系统本身不崩溃的情况下,一旦有异常你都可以试图去kill,不过要知道,kill命令只作用一次,也就是说,假如,我是说假如, 这个进程在被kill后又重新自启动,那么你不得不再运行一次kill,这样循环。当然,此时,你就不能一直陪它kill下去了,追踪查看其自启动的根源 才是正确的做法。你觉得这太麻烦了?好吧,还有一个懒办法,就是看看这个进程的名字,然后用kill name来阻止它。我知道很多地方都有介绍kill -9 -1这个命令,但是你需要知道,这个命令会kill你所有的进程,包括界面进程以及终端。而且如果你是root权限……它会连所有系统应用都一起 kill,然后,你的系统就将崩溃。所以用这个命令,你还不如直接按下你的重新启动按键,还更加省心……

进程的启动

我们能够查看正在运行的进程,查看进程的具体信息,但是,我们能不能知道它们是怎样开始的?难道是和孙猴子一样从石头里面崩出来的?你也许会看它的 PPID,恭喜你,摸着点门道了,but……你会发现大多数进程的PPID都是1,init进程。而事实上,进程的启动原因可能是很多种,启动脚本,设备 配置脚本,网络变化,甚至是任务日程等等等等。因此,我们需要探查进程启动的秘密。

启动脚本

看看你的/etc/init.d/文件夹,你会发现其中包含了很多用于启动和停止系统服务的脚本,而它们,都将以链接形式存在于/etc/rc0.d, /etc/rc1.d以及类似目录中。例如,在/etc/rc1.d执行命令ls -l,你会看见如下结果:

lrwxrwxrwx 1 root root 13 2007-04-21 22:01 K01gdm -> ../init.d/gdm*
lrwxrwxrwx 1 root root 17 2007-04-21 21:59 K01usplash -> ../init.d/usplash*
lrwxrwxrwx 1 root root 17 2007-04-23 14:54 K09apache2 -> ../init.d/apache2*
lrwxrwxrwx 1 root root 17 2007-04-21 21:58 K11anacron -> ../init.d/anacron*
lrwxrwxrwx 1 root root 13 2007-04-21 21:58 K11atd -> ../init.d/atd*
lrwxrwxrwx 1 root root 14 2007-04-21 21:58 K11cron -> ../init.d/cron*
lrwxrwxrwx 1 root root 16 2007-04-21 21:59 K19cupsys -> ../init.d/cupsys*
lrwxrwxrwx 1 root root 15 2007-04-21 21:59 K19hplip -> ../init.d/hplip*
lrwxrwxrwx 1 root root 22 2007-04-21 21:58 K20acpi-support -> ../init.d/acpi-su
……………………………..

如果你的运行级别是1,init就会进入/etc/rc1.d并调用其中的链接符号,也就是启动相应的进程,以此类推。如果想知道目前系统的运行级别,最简单的办法就是用who -r命令,会显示:

run-level 2 2007-05-04 10:09

这就表示我目前的系统运行级别是2。在boot的时候,所有/etc/rc2.d目录下对应的init脚本的输出都会存到/var/log/messages这个文件中,你可以根据它来判断哪些进程被执行了。

启动设备

udev进程用于动态管理设备的配置,这个进程监视和管理即插即用设备。一旦这些设备生效,存在于/etc/udev/rules.d/文件夹下的哪些脚本就会生效,调用不同的应用程序。

shell启动脚本

每当你登入登出系统,或者是启动了一个新的shell之后,都会执行配置脚本,每一个脚本都会启动进程。对于笔者使用的ubuntu而言,默认的shell是bash,相应的配置脚本如下:

/etc/profile:每次登录shel都会执行,全局配置文件
$HOME/.bash_profile:基于用户自定义,每一个用户都可以有自己的登录脚本
/etc/bash.bashrc:交互式非登录全局配置脚本,这个文件在.bashrc中会调用
$HOME/.bashrc:交互式非登录用户自定义的配置脚本,也是我们大多数时候需要修改的文件
/etc/bash.logout:不一定存在,如果存在的话,每次用户登出时调用它
$HOME/.bash_logout:同上,只不过是用户自定义的

我们可以注意到,上面这些脚本大致可以分为两类,一类是用于登入登出的,一类是交互式。它们有什么区别么?简单得说,每当你登入你的系统时,登入脚本和交互式脚本都会执行。而当你打开一个终端窗口时,只有交互式脚本才会被执行。

桌面脚本

linux喊了一万年的要易用,要占领桌面系统,简单说来,就是希望有一个漂亮易用的图形界面。大多数人的大多数应用还是基于图形界面的,因此,除了上面介绍的shell脚本,我们还应该关注一下图形界面脚本。

在启动图形界面的时候,首先会运行/etc/X11/xinit/xinitrc, /etc/X11/Xsession和/etc/X11/xinit/xserverrc这三个脚本。它们会设置相应的环境变量,并在最开始启动时运行应 用程序。在X-Windows启动完毕之后,就是Gnome的启动,它会调用很多程序,产生很多进程,也就是类似于Windwos下的开机自启动程序。到 底是哪些进程呢?我们可以从存放系统级别启动脚本的/etc/X11/gdm/目录,用于用户自定义启动程序的$HOME/.gnomerc文件,或者通 过系统>首选项>会话菜单来查看:

screeshot(点击缩放)

好,问题来了。既然有这么多的地方都能进行开机自启动程序的添加,难道它们都是完全一样的么?这样有什么意义呢?

恩,它们当然不是完全一样的,而是各司其职。

如果你希望自启动程序是作用于使用X-Windwos的所有人,那么你要修改的地方就是/etc/X11/Xsession,或者把脚本放置到 /etc/X11/Xsession.d/目录下。如果仅仅是希望对你自己使用X-Windwos时生效,则修改$HOME/.xsession即可。

如果你希望自启动程序是作用于使用Gnome的所有人,那么你要修改的地方就是 /etc/X11/gdm/PostSession/Default,它会仅仅对Gnome使用者起作用,而不是KDE使用者或者其他。或者把脚本放置到 /etc/X11/Xsession.d/目录下。如果仅仅是希望对你自己使用Gnome时生效,则修改$HOME/.gnomerc即可。

小知识:Gnome和X-Windows的区别?
X-Windows是图形界面底层,提供的功能是在屏幕上构造方块(窗口),然后画出里面的元素,但不提供交互式操作。gnome,kde这些都是基于X -Windows的不同风格的界面,属于桌面环境。怎么理解这个桌面环境呢?基本的意思是指“ Mac OS 和 Windows的图形界面有,而X没有却应该有的东西”。通常是一组有着共同外观和操作感的应用程序,和程序库,以及创建新的应用程序的方法。事实上你可 以同时有两个文件管理器,两个面板,等等,并不冲突,因为它们都是属于应用。

桌面应用

插入光盘,就会自动弹出文件浏览器,插入数码相机,就会自动弹出照片导入程序,等等。这些应用是怎么实现的?如何禁止程序的自动执行?如何自定义在即插即用设备被认出以后的启动程序?
答案就在 系统>首选项>可移动驱动器和介质 里。打开它,你就明白怎么回事了,这东西实在太简单,我就不多说了。 只有一点补充的,就是如果你要使用一款新的即插即用设备,而这种设备在可移动驱动器和介质选项中没有,那么此时你就必须求助于udev了。至于udev的 具体知识,讲起来又是一篇文章,所以就不讲了,还是那句话,放google~~^_^。

评估资源

刚才我们一直再说资源资源,当然,系统资源的使用情况直接决定了你系统当前的性能。那么,我们如何才能对自己系统的性能做一个基础评估呢?在评估之 前,我们需要对资源做一个更加详细的解释。所谓的资源,都是指进程所能使用的资源,包括了CPU处理能力,磁盘空间,磁盘I/O,RAM使用情况,显存使 用情况,网络流量等。而这些资源的当前使用状态,我们都是有办法自己获取的。

系统监视器和proc

正如大多数linuxer所知道的那样,/proc挂载了一个虚拟文件系统,专门用于列出当前系统资源情况和正在运行的进程。在这里,所有的东西都 是动态的,随时可能改变的。最关键的是,/proc目录下有很多以数字命名的文件夹,这些文件夹都对应了某一个响应PID的进程,内含进程的很多信息,包 括使用命令,运行环境等。还有一些不是以数字命名的文件夹,那是设备驱动和内核的情况,例如,cpuinfo这个文件就提供了系统中cpu的相关信息。

当然,你可能觉得从这里面获取系统资源信息实在太麻烦了,你会抱怨,拜托,我仅仅是初学者,有没有直观的办法?sure!刚才我们说的CPU处理能 力,磁盘可使用空间,内存情况,网络情况,你统统都可以从系统监视器中看到。监视器以曲线图的形式把情况呈现在你的面前,你可以根据它评估系统的运行是否 良好,有没有异常的发生。

screeshot-1(点击缩放)

其它

那么,监视器就是万能的?no,至少显存和磁盘I/O的情况它就无法呈现给你。在实际使用中,可能会发生你的系统中有好几个磁盘,但某个磁盘的 I/O通道堵塞会导致系统性能下降的现象。有什么办法来确定是哪个通道在搞鬼呢?这里,iostat就可以帮助我们了。这是一个小的,评估I/O性能的软 件,通过sudo apt-get install sysstat来获得它。安装完后直接输入iostat命令,就会显示:

    avg-cpu: %user %nice %system %iowait %steal %idle
    7.18 0.08 3.58 2.34 0.00 86.83

    Device: tps MB_read/s MB_wrtn/s MB_read MB_wrtn
    sda 16.63 0.19 0.16 1046 877
    sdb 0.01 0.00 0.00 0 0

包括基本CPU负荷以及I/O情况。我机器上磁盘数量较少,所以结果比较少。好了,光知道这些数据是没用的,我们需要做的是根据这些数据来分析系统 负荷。我们假设现在sdb设备数据量不正常,好,接下来就用mount命令来看看,是哪个文件挂载到sda下的,得出文件路径名后,用lsof来查看这个 目录下打开了哪些文件,哪些进程,以及相关信息。这样,就能有的放矢得来寻找到让你磁盘I/O情况异常的东西。

之后谈谈显存的情况读取。首先谈谈我们为什么要关注显存,显存的容量会直接影响你的显示情况,例如,如果你只有一块老的,256K显存的显卡,那么 屏幕的显示最高也就是支持到800×600,16位色深。 如今,大部分的高端显卡都拥有至少128MB的显存,能够轻松在32位色深的情况下上到1280×1024的分辨率。更多的显存同样对游戏以及桌面的逼真 度有益,因为可以由显存的一部分来保持主画面的显示,其它空余下来的显存就可以用来体现各种层面的仿真元素。我们可以通过lspci –v 命令来显示所有PCI卡,包括显卡的存储关联情况。这个命令有什么用呢?当你遇到硬件问题,比如缺乏关键的硬件环境支持时,可以用这个命令来诊断到底是什 么设备出了问题。这个命令在我这里奏效,但我不保证在所有的机器上都能奏效。在显示的情况中找VGA这一栏,可以看到显示信息如下:

01:00.0 VGA compatible controller: ATI Technologies Inc RV370 [Sapphire X550 Silent] (prog-if 00 [VGA])
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at 20000000 (32-bit, prefetchable) [size=256M]
I/O ports at 2000 [size=256]
Memory at 30110000 (32-bit, non-prefetchable) [size=64K]
Expansion ROM at 30120000 [disabled] [size=128K]
Capabilities:

从这里,我们就可以看出我的显卡是256M显存。

自己动手提高ubuntu系统的性能(二)

转载自http://www.forwind.cn/2007/05/10/ubuntu-howto-improve/

best CBD oil 说:
Apr 29, 2020 03:55:05 PM

F*ckin’ tremendous issues here. I am very satisfied to see your post. Thank you a lot and i’m looking ahead to contact you. Will you please drop me a e-mail?

best CBD capsules 说:
May 04, 2020 06:00:46 PM

I would like to thnkx for the efforts you have put in writing this website. I’m hoping the same high-grade web site post from you in the upcoming as well. In fact your creative writing abilities has encouraged me to get my own site now. Actually the blogging is spreading its wings quickly. Your write up is a great example of it.

best CBD oil 说:
May 07, 2020 06:26:31 PM

This site is really a walk-through it really is the details you wanted concerning this and didn’t know who to inquire about. Glimpse here, and you’ll absolutely discover it.

CBD oil near me 说:
May 15, 2020 01:59:41 AM

Excellent write-up, I am a big believer within putting feedback on weblogs as well as community forums to inform the blog authors know that theya’ve additional one thing useful to the net!

best CBD oil for sl 说:
May 18, 2020 09:47:51 AM

I wanted to check up and let you know how great I cherished discovering your website today. We would consider it a great honor to work at my business office and be able to utilize the tips provided on your blog and also be involved in visitors’ responses like this. Should a position associated with guest article writer become on offer at your end, you should let me know.

best CBD oil 说:
May 22, 2020 11:09:02 AM

pleasant sessions up front for individuals that find out your site.

shahmeerkhan 说:
Jul 01, 2020 09:16:22 PM

I?m now not sure the place you are getting your info, but good topic. I must spend a while finding out much more or working out more. Thank you for fantastic information I was on the lookout for this information for my mission. tree service

shahmeerkhan 说:
Jul 29, 2020 02:00:12 AM

Simply wanna input that you have a very nice site, I enjoy the design and style it really stands out. top island destinations

Maklerbüro Aurich 说:
Aug 24, 2020 02:49:12 AM

You’re the best, thanks for the awesome article. I’m having troubles subscribing to your blogs feed. Thought I’d let you know.

asharseo 说:
Sep 07, 2020 09:40:13 PM

aluminum curtains rods are much lighter than those steel rods that we previously used;; http://photozou.jp/user/top/3263571

wireless security ca 说:
Sep 17, 2020 07:36:44 PM

I believe one of your commercials caused my browser to resize, you may well want to put that on your blacklist.

asharseo 说:
Sep 23, 2020 06:14:41 PM

Music began playing when I opened this web site, so annoying! baby scale

myra showflat 说:
Sep 27, 2020 08:10:06 PM

This is really interesting, You’re a very skilled blogger. Ive joined your rss and appear forward to seeking really your great post. Also, I have shared your web site during my social networks!

franchise immobilien 说:
Oct 03, 2020 08:14:06 PM

This is really interesting, You’re a very skilled blogger. Ive joined your rss and appear forward to seeking really your great post. Also, I have shared your web site during my social networks!

vehicle tracker 说:
Oct 04, 2020 09:52:59 PM

I conceive you have mentioned some very interesting details , appreciate it for the post.

roulette online indo 说:
Oct 08, 2020 02:25:02 PM

Thanks for the post. I really enjoyed reading it and I was very interested in what you have to say!

Robinjack 说:
Oct 14, 2020 08:08:06 PM

Free PORN Download. Free XXX links. Clips, Movies, Magazines, Galleries, DVDs and much more. Kent Ridge Hill Residences Showroom

Robinjack 说:
Nov 08, 2020 08:34:14 PM

steam cleaners can clean lots of dirty clothes in a very short period of time that is why i always prefer to use them’ Houston Embroidery Service

Robinjack 说:
Nov 14, 2020 11:52:34 PM

Quite easily, the article is in reality the sweetest on that laudable topic. I agree with your conclusions and also will eagerly look forward to your approaching updates. Simply just saying thanks can not just be sufficient, for the incredible lucidity in your writing. I will instantly grab your rss feed to stay privy of any kind of updates. Good work and also much success in your business efforts! umrah packages karachi

Robinjack 说:
Nov 15, 2020 04:30:10 PM

Online sport betting provides you with many different options because online sports books are in competition with one another.   vnw88vn

Robinjack 说:
Nov 17, 2020 06:08:19 PM

Geez, it’s like some of you didn’t even bother reading the post. Get with the program people. type beats

Robinjack 说:
Nov 18, 2020 04:14:40 PM

Its like the greatest betting portal of the world and every sports bettors dream, having the right handicappers picks that will take you a long way and to the next level. 1gom

Robinjack 说:
Nov 18, 2020 05:30:47 PM

There are some interesting cut-off dates in this article but I don’t know if I see all of them heart to heart. There may be some validity however I’ll take maintain opinion until I look into it further. Good article , thanks and we want more! Added to FeedBurner as nicely Budapest mieten

Robinjack 说:
Nov 19, 2020 06:53:11 PM

Thanks for helping out, good info . Papenburg Haus kaufen

Robinjack 说:
Nov 24, 2020 05:56:58 PM

However, there are other things that can affect the outcome and to try and come up with your own system is a lot of work and takes a lot of time.   sbobetlink

Robinjack 说:
Nov 24, 2020 10:56:04 PM

Hey, your site is very interesting.. Plus it was something I’m able to definitely relate with Ill constantly stop by for your blog therefore i hope you continue making fun and interesting posts like this one… satta matka

Robinjack 说:
Nov 24, 2020 10:56:09 PM

When do you think this Real Estate market will go back in a positive direction? Or is it still too early to tell? We are seeing a lot of housing foreclosures in Orlando Florida. What about you? I would love to get your feedback on this. matka result

Robinjack 说:
Nov 24, 2020 10:56:13 PM

You ought to join in a contest for just one of the best blogs on the net. I most certainly will recommend this website! matka

Robinjack 说:
Nov 25, 2020 06:21:21 PM

You lost me, friend. I mean, I suppose I get what youre indicating. I realize what you are saying, but you just appear to have ignored that you can find some other folks within the world who look at this matter for what it truly is and may possibly not agree with you. You may be turning away a decent amount of individuals who might have been followers of your blog site. carry me costume

Robinjack 说:
Nov 26, 2020 10:16:22 PM

Need more? The small investment that you make can be made up in no time betting online.   sbotop

Robinjack 说:
Nov 26, 2020 10:16:26 PM

While this sounds simple, choosing a sport that you want to bet upon is not that easy.   sbobet.net

Robinjack 说:
Dec 08, 2020 01:40:54 AM

As more and more people use online dating services and dating agencies to help them find their Soulmates, a new specialty service has emerged in the form of an Online Dating Coach. While the online dating sites compile your personal information so they can do the matchmaking, a Dating Coach works directly with the clients to help them establish and develop the relationships which start within the agency. A Dating Coach has the responsibility of helping clients effectively market themselves on the dating site. Essentially, an Online Dating Coach provides personal coaching services to clients so they can put their best foot forward in making contact with the other dating site members. matchmaker

Robinjack 说:
Dec 10, 2020 06:11:48 PM

Thanks , I have recently been searching for information about this topic for ages and yours is the best I’ve discovered till now. But, what about the conclusion? Are you sure about the source? cheap smm panel

Robinjack 说:
Dec 21, 2020 01:50:23 AM

The numbers move according to the betting pattern of the bettors, which means the line changes depending on the wagers bettors have put.   mbet88cvf

Robinjack 说:
Dec 24, 2020 11:38:25 PM

I really thought the Phillies would win this game because they seem to be the better team, however I was advised to bet on the Marlins +1. 12bet

Robinjack 说:
Dec 31, 2020 12:44:59 AM

The other reason that so many have decided to host affiliate sports betting banners is the simple monetary factor. Most affiliate programs may offer you a small percentage of a sale or a few dollars up front for passing on a customer, but look smartly in the sports betting field and the rewards are much higher. Imagine for example earning not just a small percentage for a one off bet or a couple of months, but between 20 and 35% of a player's entire lifetime on a site. This introduces the availability of some serious money into the equation, and is also what has drawn many people into becoming serious sports betting affiliates. The more fully signed up betting customers an affiliate can attract, the more they are liable to earn, therefore the onus is well and truly on affiliates to get out there and sell their product.   kqxsmb

Robinjack 说:
Jan 02, 2021 05:47:16 PM

When you're looking for top-rated luxury transportation companies for car shipping, we are the right option in this matter. We are a car transportation company that can Cargo and freight transportation. You can trust as we take care of your car as if it was our own. Call us at (800) 392-1446!

Robinjack 说:
Jan 11, 2021 06:01:36 PM

Dominique Whitaker Car Accident West Palm Beach – Dominique Whitaker Car Accident, December 7th, 2020 – We are learning about an accident that Dominique Whitaker was involved in. Joseph Teague Death

Robinjack 说:
Jan 11, 2021 09:41:23 PM

- yo , Thank you a lot for making this website . I m into gambling niche and have found this website using search on google . Will be sure to share . I am affiliate and have found your site very informational Many thanks , see ya. :S ingatlan budapest

Robinjack 说:
Jan 18, 2021 07:02:46 PM

I’m impressed, I must say. Actually rarely do I encounter a blog that’s both educative and entertaining, and without a doubt, you could have hit the nail about the head. Your thought is outstanding; ab muscles an element that insufficient everyone is speaking intelligently about. My business is happy which i came across this during my hunt for something about it. budapest Apartment for rent

Robinjack 说:
Jan 27, 2021 07:02:23 PM

I appreciate your wp theme, exactly where would you download it from? Get nembutal online

Robinjack 说:
Jan 30, 2021 07:14:32 PM

Not often do I encounter a weblog that is both educated and entertaining, and let me tell you, you may have hit the nail on the head. Your concept is excellent; the issue is something that not sufficient individuals are speaking intelligently about. I am very happy that I stumbled across this in my quest for something relating to this. online casino

how to increase yout 说:
Apr 29, 2021 09:03:52 AM

You there, this is really good post here. Thanks for taking the time to post such valuable information. Quality content is what always gets the visitors coming.

토토사이트 说:
May 17, 2021 11:23:17 PM

I really loved reading your blog. It was very well authored and easy to understand. Unlike other blogs I have read which are really not that good.Thanks alot!

theory of computati 说:
May 19, 2021 11:37:27 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks

alex 说:
May 23, 2021 06:58:45 PM

I and my friends were found to be looking at the nice ideas on your web page then quickly I had a horrible suspicion I never expressed respect to the web site owner for those secrets. My women came for this reason very interested to see all of them and already have sincerely been tapping into those things. Appreciation for actually being well thoughtful and also for figuring out these kinds of very good subject areas most people are really desirous to be aware of. Our own sincere apologies for not saying thanks to earlier. writing tips

메이저사이트 说:
Jun 03, 2021 02:47:07 AM

I recently came across your blog and have been reading along. I thought I would leave my first comment. I don’t know what to say except that I have enjoyed reading.

alex 说:
Jun 05, 2021 07:13:23 PM

This internet site is my breathing in, very good style and perfect content material . Agen Togel Online

congestión 说:
Jun 06, 2021 01:20:34 AM

I know this is one of the most meaningful information for me. And I'm animated reading your article. But should remark on some general things, the website style is perfect; the articles are great. Thanks for the ton of tangible and attainable help.

tgtg 说:
Jun 07, 2021 03:55:46 AM

I know this is one of the most meaningful information for me. And I'm animated reading your article. But should remark on some general things, the website style is perfect; the articles are great. Thanks for the ton of tangible and attainable help. become a payment facilitator

slotsmillion 说:
Jun 07, 2021 07:31:29 PM

Neue Spiele sind eine aufregende Ergänzung für jedes Casino und manchmal mit großartigen Aktionen und Angeboten verbunden, wie z. B. Bonus-Spins und Aufladungen von Gratisgeldern. Ich fand dieses großartige Online Casino mit einigen großartigen Spielen namens slotsmillion. Sie sind wirklich einen Besuch wert.

tgtg 说:
Jun 08, 2021 11:15:55 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks wholesale iso program

tgtg 说:
Jun 09, 2021 08:55:47 PM

Good website! I truly love how it is easy on my eyes it is. I am wondering how I might be notified whenever a new post has been made. I have subscribed to your RSS which may do the trick? Have a great day! ultrasonic scruber

tgtg 说:
Jun 10, 2021 01:35:56 AM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks congestión

Buy TikTok Likes 说:
Jun 12, 2021 03:14:40 PM

The way you write, you are really a professional blogger.~’*.’

tgtg 说:
Jun 12, 2021 07:07:23 PM

If you are looking for more information about flat rate locksmith Las Vegas check that right away. dilatador nasal

sgdg 说:
Jun 14, 2021 08:10:55 PM

I think this is one of the most significant information for me. And i’m glad reading your article. But should remark on some general things, The web site style is perfect, the articles is really great : D. Good job, cheers 토토사이트

sgdg 说:
Jun 19, 2021 11:53:05 PM

You there, this is really good post here. Thanks for taking the time to post such valuable information. Quality content is what always gets the visitors coming. Advanced-Medicine

villas phuket 说:
Jun 20, 2021 01:17:45 PM

Your current sites typically have got lots of truly current info. Where do you come up with this? Just stating you’re extremely imaginative. Thanks again

sgdg 说:
Jun 20, 2021 11:29:59 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks voyance très forte

港区の高級マンション 说:
Jun 21, 2021 08:42:11 PM

The heart of your writing whilst appearing agreeable in the beginning, did not sit perfectly with me after some time. Someplace throughout the paragraphs you actually were able to make me a believer but just for a while. I still have got a problem with your leaps in assumptions and you would do well to fill in all those gaps. When you actually can accomplish that, I would surely end up being fascinated.

เว็บแทงบอล UFABET 说:
Jun 22, 2021 03:17:56 PM

Some times its a pain in the ass to read what blog owners wrote but this site is very user friendly ! .

sgdg 说:
Jun 23, 2021 01:17:59 AM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks sell on ebay

sgdg 说:
Jun 27, 2021 12:41:06 AM

Best work you have done, this online website is cool with great facts and looks. I have stopped at this blog after viewing the excellent content. I will be back for more qualitative work. 먹튀

Pg slot ทดลองเล่น 说:
Jun 27, 2021 03:22:27 PM

You should participate in a contest for among the best blogs on the web. I will suggest this website!

pragmatic 说:
Jun 28, 2021 07:47:37 PM

You’ve really written a very good quality article here. Thank you very much

sgdg 说:
Jun 29, 2021 11:46:08 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks cerraduras seguras

Pg slot สมัคร 说:
Jun 30, 2021 03:19:37 PM

I am not sure where you’re getting your info, but great topic. I needs to spend some time learning much more or understanding more. Thanks for fantastic information I was looking for this info for my mission.

sgdg 说:
Jun 30, 2021 10:59:10 PM

Cool stuff you have got and you keep update all of us. Top Tips For Playing Baccarat

sgdg 说:
Jul 03, 2021 09:06:05 PM

Cool stuff you have got and you keep update all of us. casino online

Learn Indian Music 说:
Jul 05, 2021 01:56:31 PM

I cannot thank you fully for the blogposts on your web page. I know you placed a lot of time and effort into all of them and hope you know how considerably I appreciate it. I hope I will do precisely the same for another individual at some point. Palm Beach Condos

US Lottery Results 说:
Jul 05, 2021 03:32:46 PM

I would like to see more posts like this!.. Great blog btw! reis Subscribed..

sgdg 说:
Jul 08, 2021 08:42:32 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks bahis siteleri

sgdg 说:
Jul 11, 2021 07:31:31 PM

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks Click Here

sgdg 说:
Jul 13, 2021 10:06:39 PM

Thanks for your post. I’ve been thinking about writing a very comparable post over the last couple of weeks, I’ll probably keep it short and sweet and link to this instead if thats cool. Thanks. www.cacamart.com

sgdg 说:
Jul 15, 2021 08:53:28 PM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. adwords mcc

sgdg 说:
Jul 17, 2021 07:25:15 PM

Wow i can say that this is another great article as expected of this blog.Bookmarked this site.. akita

sgdg 说:
Jul 18, 2021 01:31:52 AM

Thanks for this great post, i find it very interesting and very well thought out and put together. I look forward to reading your work in the future. dog anxiety vest

sgdg 说:
Jul 18, 2021 09:21:00 PM

I am incapable of reading articles online very often, but I’m happy I did today. It is very well written, and your points are well-expressed. I request you warmly, please, don’t ever stop writing. older dog back legs collapsing

mobilebet 说:
Jul 19, 2021 05:45:30 PM

Ich bin sehr froh, auf diese Online Casino Website gestoßen zu sein mobilebet Einige der besten Spielerlebnisse, die ich je hier hatte.

รีวิวufa365 说:
Jul 20, 2021 04:07:55 PM

I impressed, I need to say. Really not often do I encounter a blog that each educative and entertaining, and let me tell you, you have hit the nail on the head. Your concept is outstanding; the problem is something that not sufficient persons are speaking intelligently about. I’m very comfortable that I stumbled across this in my seek for one thing referring to this.

sgdg 说:
Jul 20, 2021 08:50:31 PM

I am incapable of reading articles online very often, but I’m happy I did today. It is very well written, and your points are well-expressed. I request you warmly, please, don’t ever stop writing. Hengyi Technology

sgdg 说:
Jul 24, 2021 08:58:19 PM

This article was written by a real thinking writer. I agree many of the with the solid points made by the writer. I’ll be back. iflix

sgdg 说:
Jul 25, 2021 11:37:22 PM

You have outdone yourself this time. It is probably the best, most short step by step guide that I have ever seen. cryptocurrency news in hindi

sgdg 说:
Jul 26, 2021 06:52:08 PM

Positive site, where did u come up with the information on this posting? I'm pleased I discovered it though, ill be checking back soon to find out what additional posts you include. 가상축구 밸런스

sgdg 说:
Jul 28, 2021 01:27:45 AM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. moviesflix

sgdg 说:
Aug 03, 2021 10:48:38 PM

Nice blog, I will keep visiting this blog very often. Touristenvisum für Kanada

sgdg 说:
Aug 08, 2021 08:46:21 PM

http://xxb.is-programmer.com/posts/792.html new zealand tourist visa https://www.new-zealand-visa.co.nz/new-zealand-tourist-visa Succeed! It could be one of the most useful blogs we have ever come across on the subject. Excellent info! I’m also an expert in this topic so I can understand your effort very well. Thanks for the huge help. new zealand tourist visa

sgdg 说:
Aug 16, 2021 08:10:10 PM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. katrimaza

sgdg 说:
Aug 19, 2021 08:17:20 PM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. emiten.com

sgdg 说:
Sep 02, 2021 10:21:37 PM

Immediately this blog is going to unquestionably often be prominent concerning all of blog people today, because meticulous reports and also assessments. Tradefx

sgdg 说:
Sep 07, 2021 09:58:02 PM

Thanks for the nice blog. It was very useful for me. I'm happy I found this blog. Thank you for sharing with us,I too always learn something new from your post. Pinball Machine For Sale

sgdg 说:
Sep 13, 2021 12:12:25 AM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. 代写被举报

sgdg 说:
Sep 19, 2021 12:50:27 AM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. zabawki dla dzieci

sgdg 说:
Sep 22, 2021 01:53:03 AM

Cool stuff you have got and you keep update all of us. solo leveling

sgdg 说:
Sep 27, 2021 01:51:25 AM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. 88tangkas

sgdg 说:
Sep 27, 2021 09:19:57 PM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. sbobet asia

sgdg 说:
Sep 30, 2021 01:36:32 AM

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. is the forest cross platform

sgdg 说:
Sep 30, 2021 02:23:22 PM

It was a very good post indeed. I thoroughly enjoyed reading it in my lunch time. Will surely come and visit this blog more often. Thanks for sharing. login sbobet

sgdg 说:
Oct 05, 2021 08:37:57 PM

Cool stuff you have got and you keep update all of us. pain management singapore

asd 说:
Jan 04, 2022 08:39:11 PM

You have a real talent for writing unique content. I like how you think and the way you express your views in this article. I am impressed by your writing style a lot. Thanks for making my experience more beautiful. https://www.amazon.es/dp/B09M4F79F5

asd 说:
Feb 09, 2022 06:04:36 PM

Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative. I can't wait to read lots of your posts. sexxy1688

aaa 说:
Sep 15, 2022 10:44:10 PM

I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work... Top Gun

aaa 说:
Sep 29, 2022 01:19:14 AM

It is a good site post without fail. Not too many people would actually, the way you just did. I am impressed that there is so much information about this subject that has been uncovered and you’ve defeated yourself this time, with so much quality. Good Works! RTP slot

Kopertoto 说:
Mar 26, 2023 03:44:32 PM

http://146.190.200.106/
https://web.rcepsec.org/keluaran-toto-macau/
https://dinkes.jatimprov.go.id/prediksi-hk/
https://dinkes.jatimprov.go.id/joker123/
https://dinkes.jatimprov.go.id/totomacau/

UFABET168 说:
Apr 03, 2023 11:27:49 PM

You have a real talent for writing unique content. I like how you think and the way you express your views in this article. I am impressed by your writing style a lot. Thanks for making my experience more beautiful.

mespai 说:
Jul 13, 2023 01:18:50 PM

<a title="slot thailand" href="https://fendi.lumajangkab.go.id/assets/admin/plugins/flots/data/slot-thailand/" rel="Dofollow"><strong>slot thailand</strong></a>
<a title="prediksi pak tuntung" href="https://inspektorat.serambagiantimurkab.go.id/wp-includes/syair-pak-tuntung/" rel="Dofollow"><strong>prediksi pak tuntung</strong></a>
<a title="prediksi angka keramat" href="https://inspektorat.serambagiantimurkab.go.id/wp-includes/prediksi-angka-keramat/" rel="Dofollow"><strong>prediksi angka keramat</strong></a>
<a title="slot dana terbaru" href="https://inspektorat.serambagiantimurkab.go.id/wp-includes/situs-slot-dana-terbaru/" rel="Dofollow"><strong>slot dana terbaru</strong></a>
<a title="slot777" href="https://bkd.sulselprov.go.id/assets/sas/data/desa/slot777-slot-pulsa-5000/" rel="Dofollow"><strong>slot777</strong></a>
<a title="situs slot demo" href="https://bkpsdm.temanggungkab.go.id/assets/demo/data/situs-slot-demo/" rel="Dofollow"><strong>situs slot demo</strong></a>
<a title="slot deposit pulsa 5000" href="https://bkd.sulselprov.go.id/assets/sass/slot-pulsa-5000/" rel="Dofollow"><strong>slot deposit pulsa 5000</strong></a>
<a title="buku mimpi" href="http://pasca.fe.unissula.ac.id/wp-content/plugins/silver/data/jasa/prediksi-angka-keramat/" rel="Dofollow"><strong>buku mimpi</strong></a>
<a title="slot demo" href="https://sisamsul.jambikota.go.id/data/situs-slot-demo/" rel="Dofollow"><strong>slot demo</strong></a>
<a title="pak tuntung" href="https://siharman.unsil.ac.id/assets/photo/data/pak-tuntung/" rel="Dofollow"><strong>pak tuntung</strong></a>
<a title="syair pak tuntung" href="https://gubug.dinus.ac.id/wp-content/uploads/2023/06/" rel="Dofollow"><strong>syair pak tuntung</strong></a>
<a title="buku mimpi 2d" href="https://gubug.dinus.ac.id/wp-content/uploads/2023/06/" rel="Dofollow"><strong>buku mimpi 2d</strong></a>
<a title="slot 5000" href="https://icgh2016.ui.ac.id/slot-deposit-pulsa-5000/" rel="Dofollow"><strong>slot 5000</strong></a>
<a title="syair hk" href="https://bkd.sulselprov.go.id/assets_front/css/syair-hk/" rel="Dofollow"><strong>syair hk</strong></a>
<a title="slot mpo" href="https://gubug.dinus.ac.id/wp-content/uploads/2022/12/situs-slot-mpo/" rel="Dofollow"><strong>slot mpo</strong></a>
<a title="slot kamboja" href="https://bkd.sulselprov.go.id/assets_front/images/news/akun-pro-kamboja/" rel="Dofollow"><strong>slot kamboja</strong></a>
<a title="slot dana" href="https://prodiarab.fib.ui.ac.id/wp-content/plugins/automatic-domain-changer/languages/slot-dana/" rel="Dofollow"><strong>slot dana</strong></a>
<a title="erek erek 2d" href="https://bkd.sulselprov.go.id/assets_panel/media/misc/" rel="Dofollow"><strong>erek erek 2d</strong></a>
<a title="agen slot 5000" href="https://gubug.dinus.ac.id/wp-content/themes/twentysixteen/slot-deposit-pulsa-5000/" rel="Dofollow"><strong>agen slot 5000</strong></a>
<a title="deposit pulsa tanpa potongan" href="https://if.teknokrat.ac.id/wp-content/plugins/elementor/includes/base/" rel="Dofollow"><strong>deposit pulsa tanpa potongan</strong></a>


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter