やり方
イメージ画像のソース指定先として、以下を設定。
http://wimg.ca/size_2/ + <スクリーンショットを取りたいURL>
以下例。
HTMLコードの例
<img src="http://wimg.ca/size_2/http://www.yahoo.co.jp/" />
実行例
参考
以上
<img src="http://wimg.ca/size_2/http://www.yahoo.co.jp/" />
pre{ border: solid #bebebe 1px; padding: 3px; background-color: #e3e3e3; line-height: 1.1em; }
(RHEL系) [root@localhost ~]# chkconfig --list | grep vsftpd vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off [root@localhost ~]# chkconfig vsftpd on [root@localhost ~]# chkconfig --list | grep vsftpd vsftpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off [root@localhost ~]#
(RHEL系) [root@localhost ~]# chkconfig --list | grep vsftpd vsftpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off [root@localhost ~]# chkconfig vsftpd off [root@localhost ~]# chkconfig --list | grep vsftpd vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off [root@localhost ~]#
(RHEL系) [root@localhost ~]# service --status-all | grep vsftpd rndc: connect failed: 127.0.0.1#953: connection refused vsftpd は停止しています [root@localhost ~]# service vsftpd start vsftpd 用の vsftpd を起動中: [ OK ] [root@localhost ~]# service --status-all | grep vsftpd rndc: connect failed: 127.0.0.1#953: connection refused vsftpd (pid 4281) を実行中... [root@localhost ~]#
(RHEL系) [root@localhost ~]# service --status-all | grep vsftpd rndc: connect failed: 127.0.0.1#953: connection refused vsftpd (pid 4281) を実行中... [root@localhost ~]# service vsftpd stop vsftpd を停止中: [ OK ] [root@localhost ~]# service --status-all | grep vsftpd rndc: connect failed: 127.0.0.1#953: connection refused vsftpd は停止しています [root@localhost ~]#
[root@localhost ~]# chkconfig --list | grep gssftp gssftp: off [root@localhost ~]# chkconfig gssftp on [root@localhost ~]# chkconfig --list | grep gssftp gssftp: on [root@localhost ~]#
[root@localhost ~]# chkconfig --list | grep gssftp gssftp: on [root@localhost ~]# chkconfig gssftp off [root@localhost ~]# chkconfig --list | grep gssftp gssftp: off [root@localhost ~]#
[root@localhost ~]# cat /etc/xinetd.d/gssftp # default: off # description: The kerberized FTP server accepts FTP connections \ # that can be authenticated with Kerberos 5. service ftp { disable = yes flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/ftpd # server_args = -l -a server_args = -l log_on_failure += USERID } [root@localhost ~]#
[root@localhost /]# fsck -A
fsck 1.39 (29-May-2006)
e2fsck 1.39 (29-May-2006)
/dev/sda2 is mounted.
WARNING!!! Running e2fsck on a mounted filesystem may cause
SEVERE filesystem damage.
Do you really want to continue (y/n)? no
check aborted.
e2fsck 1.39 (29-May-2006)
/dev/sda1 is mounted. e2fsck: Cannot continue, aborting.
[root@localhost /]#
[root@localhost ~]# service nfs start NFS サービスを起動中: [ OK ] NFS クォータを起動中: [ OK ] NFS デーモンを起動中: [ OK ] NFS mountd を起動中: [ OK ] [root@localhost ~]# showmount -e Export list for localhost.localdomain: [root@localhost ~]# exportfs *:/home/owner [root@localhost ~]# showmount -e Export list for localhost.localdomain: /home/owner * [root@localhost ~]#
[root@localhost ~]# showmount -e Export list for localhost.localdomain: /home/owner * [root@localhost ~]# exportfs -u *:/home/owner [root@localhost ~]# showmount -e Export list for localhost.localdomain: [root@localhost ~]#
[root@localhost ~]# cat /etc/exports /home/owner *(ro) [root@localhost ~]# exportfs -r [root@localhost ~]# showmount -e Export list for localhost.localdomain: /home/owner * [root@localhost ~]# vi /etc/exports ... [root@localhost ~]# cat /etc/exports /home/owner localhost(ro) [root@localhost ~]# exportfs -r [root@localhost ~]# showmount -e Export list for localhost.localdomain: /home/owner localhost.localdomain [root@localhost ~]#
<div class='header-cap-top cap-top'>
<div class='cap-left'/>
<div class='cap-right'><script src="http://www.clocklink.com/embed.js"></script><script type="text/javascript" language="JavaScript">obj=new Object;obj.clockfile="0010-red.swf";obj.TimeZone="JST";obj.width=150;obj.height=150;obj.wmode="transparent";showClock(obj);</script></div>
</div>
<div class='header-cap-top cap-top'>
<div class='cap-left'/>
<div class='cap-right'/>
</div>
[owner@localhost ~]$ dd if=/dev/zero of=./test bs=1M seek=10 count=0
0+0 records in
0+0 records out
0 bytes (0 B) copied, 9.7e-05 seconds, 0.0 kB/s
[owner@localhost ~]$ stat ./test
File: `./test'
Size: 10485760 Blocks: 8 IO Block: 4096 通常ファイル
Device: fd00h/64768d Inode: 4369481 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 500/ owner) Gid: ( 500/ owner)
Access: 2011-04-25 12:36:54.000000000 +0900
Modify: 2011-04-25 12:36:54.000000000 +0900
Change: 2011-04-25 12:36:54.000000000 +0900
[owner@localhost ~]$
2) スパースを解除する[owner@localhost ~]$ cp --sparse=never ./test ./test1
[owner@localhost ~]$ stat ./test1
File: `./test1'
Size: 10485760 Blocks: 20520 IO Block: 4096 通常ファイル
Device: fd00h/64768d Inode: 4369533 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 500/ owner) Gid: ( 500/ owner)
Access: 2011-04-25 12:38:14.000000000 +0900
Modify: 2011-04-25 12:38:14.000000000 +0900
Change: 2011-04-25 12:38:14.000000000 +0900
[owner@localhost ~]$
3) スパースを再作成Change: 2011-04-25 12:38:14.000000000 +0900
[owner@localhost ~]$ cp --sparse=always ./test1 ./test2
[owner@localhost ~]$ stat ./test2
File: `./test2'
Size: 10485760 Blocks: 8 IO Block: 4096 通常ファイル
Device: fd00h/64768d Inode: 4369553 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 500/ owner) Gid: ( 500/ owner)
Access: 2011-04-25 12:39:29.000000000 +0900
Modify: 2011-04-25 12:39:29.000000000 +0900
Change: 2011-04-25 12:39:29.000000000 +0900
[owner@localhost ~]$
<html> <img style="float:left;" src="WS000032.JPG" /> <p>abcdefg</p> <ul> <li>hhhhhhhhhh</li> <li>iiiiiiiiii</li> </ul> </html>
<html> <img style="margin-right:20; float:left;" src="WS000032.JPG" /> <p>abcdefg</p> <ul> <li>hhhhhhhhhh</li> <li>iiiiiiiiii</li> </ul> </html>
<?php if (get_option('rss_use_excerpt')) : ?> <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> <?php else : ?> <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>[変更後]
<?php if (get_option('rss_use_excerpt')) : ?> <description><![CDATA[<?php the_content_feed('rss2') ?>]]></description> <?php else : ?> <description><![CDATA[<?php the_content_feed('rss2') ?>]]></description>
<?php if (get_option('rss_use_excerpt')) : ?> <description><?php the_excerpt_rss() ?></description> <?php else : ?> <description><?php the_excerpt_rss() ?></description>
<?php if (get_option('rss_use_excerpt')) : ?> <description><?php the_content_feed('rdf') ?></description> <?php else : ?> <description><?php the_content_feed('rdf') ?></description>
<title><?php the_title_rss() ?></title>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<title><?php the_title_rss() ?></title>
<description><![CDATA[<?php the_content_feed('rdf') ?>]]></description>
例 [owner@localhost ~]$ tar zxvf cpulimit-1.1.tar.gz cpulimit-1.1/ cpulimit-1.1/Makefile cpulimit-1.1/cpulimit.c [owner@localhost ~]$ cd cpulimit-1.1(2) コンパイル
[owner@localhost cpulimit-1.1]$ make gcc -o cpulimit cpulimit.c -lrt -Wall -O2 [owner@localhost cpulimit-1.1]$インストール
「復帰時にパスワード入力」を設定しているWindows 7を休止状態から復帰する為に電源ボタンを押した後、コーヒーなどのんびり飲んでいると、2分間ほどでまた休止してしまう。
コーヒーが冷めるのを横目に、慌てて、また電源ボタンを押して、急いでパスワードを入力することになるが、以下で解決できた。
確認環境
方法
(1) [コントロールパネル]-[ネットワークとインターネット]-[ネットワークと共有センター]-[ホームグループと共有に関するオプションを選択する]とクリックし、「ホームグループ設定の変更」画面をひらく
(2) "デバイスとメディアの共有"をチェック
参考
以上
「変換君」設定ファイルセレクター |
変換中の画面例 |