Re: disklabel - 'P' option

2010-04-09 Thread Mark Lumsden

This diff includes the 'P' option in the manpage and interactive helptext.

The install floppys are here:

http://www.cyodesigns.com/diffs/floppy47.fs
http://www.cyodesigns.com/diffs/floppyB47.fs
http://www.cyodesigns.com/diffs/floppyC47.fs

If you take one for a spin, could you let me know pls. I have only 
tested floppyB47.fs on a vm since the my machine with a floppy drive is 
transit in a 40ft container somewhere.


-mark

Index: editor.c
===
RCS file: /cvs/src/sbin/disklabel/editor.c,v
retrieving revision 1.231
diff -u -p -r1.231 editor.c
--- editor.c4 Apr 2010 14:12:12 -   1.231
+++ editor.c9 Apr 2010 22:45:03 -
@@ -150,6 +150,7 @@ static u_int64_t starting_sector;
static u_int64_t ending_sector;
static int expert;
static int overlap;
+static int auto_print = 0;

/*
 * Simple partition editor.
@@ -164,7 +165,8 @@ editor(struct disklabel *lp, int f)
char buf[BUFSIZ], *cmd, *arg;
char **omountpoints = NULL;
char **origmountpoints = NULL, **tmpmountpoints = NULL;
-   int i, error = 0;
+   int i, error = 0, print_info = 0;
+   static char *argcpy;

/* Alloc and init mount point info */
if (!(omountpoints = calloc(MAXPARTITIONS, sizeof(char *))) ||
@@ -305,8 +307,19 @@ editor(struct disklabel *lp, int f)
editor_name(&label, arg);
break;

+   case 'P':
+   free(argcpy);
+   argcpy = NULL;
+   if (arg) {
+   if ((argcpy = strdup(arg)) == NULL)
+   err(1, "strdup");
+   auto_print = 1;
+   } else
+   auto_print = !auto_print;
+   break;
+
case 'p':
-   display_edit(&label, arg ? *arg : 0, 
editor_countfree(&label));
+   print_info = 1;
break;

case 'l':
@@ -475,6 +488,19 @@ editor(struct disklabel *lp, int f)
break;
}

+   if ((print_info || auto_print) &&
+   (*cmd != 'h' && *cmd != '?')) {
+   if (auto_print) {
+   printf("--" \
+   "--\n");
+   if (!print_info)
+   arg = argcpy;
+   }
+			display_edit(&label, arg ? *arg : 0, 
+			editor_countfree(&label));

+   print_info = 0;
+   }
+
/*
 * If no changes were made to label or mountpoints, then
 * restore undo info.
@@ -1734,6 +1760,11 @@ editor_help(char *arg)

/* XXX - put these strings in a table instead? */
switch (*arg) {
+   case 'P':
+   puts(
+"The 'P' command will print disklabel information after every command.\n"
+"The information displayed and arguments accepted are equivalent to 'p'\n"
+"(see below).\n");
case 'p':
puts(
"The 'p' command prints the current partitions.  By default, it prints size\n"
@@ -1887,7 +1918,7 @@ editor_help(char *arg)
default:
puts("Available commands:");
puts(
-"  ? [cmd]  - show help  n [part] - set mount point\n"
+"  ? [cmd]  - show help  P [unit] - always print partitions\n"
"  A- auto partition all space   p [unit] - print partitions\n"
"  a [part] - add partition  q- quit & save changes\n"
"  b- set OpenBSD boundaries R [part] - resize a partition\n"
@@ -1899,6 +1930,7 @@ editor_help(char *arg)
"  l [unit] - print disk label headerX- toggle expert mode\n"
"  M- disklabel(8) man page  x- exit & lose changes\n"
"  m [part] - modify partition   z- delete all partitions\n"
+"  n [part] - set mount point\n"
"\n"
"Suffixes can be used to indicate units other than sectors:\n"
"\t'b' (bytes), 'k' (kilobytes), 'm' (megabytes), 'g' (gigabytes)\n"
Index: disklabel.8
===
RCS file: /cvs/src/sbin/disklabel/disklabel.8,v
retrieving revision 1.88
diff -u -p -r1.88 disklabel.8
--- disklabel.8 23 Mar 2010 18:43:06 -  1.88
+++ disklabel.8 9 Apr 2010 22:45:03 -
@@ -183,6 +183,8 @@ Disallow writing of the pack label area 
.It Fl n

Make no permanent changes to the disklabel
.Pq useful for debugging purposes .
+.It Fl P Ar unit
+Equivalent to 'p' (see below) but print information after every command.
.It Fl p Ar unit
Print partition sizes in
.Ar unit



Re: [patch] ssh: null pointer dereference

2010-04-09 Thread Damien Miller
On Sat, 27 Mar 2010, Matthew Haub wrote:

> Hello,
> 
> If channel_by_id() in mux_master_control_cleanup_cb() fails to find the
> session channel then pointer "sc" will be NULL when dereferenced.

Applied - thanks. This case shouldn't happen, if you are able to hit
this code then please tell me how you do it :|

> Index: usr.bin/ssh/mux.c
> ===
> RCS file: /cvs/src/usr.bin/ssh/mux.c,v
> retrieving revision 1.14
> diff -u usr.bin/ssh/mux.c
> --- usr.bin/ssh/mux.c 30 Jan 2010 02:54:53 -  1.14
> +++ usr.bin/ssh/mux.c 27 Mar 2010 09:42:44 -
> @@ -189,7 +189,7 @@
>   fatal("%s: channel_by_id(%i) == NULL", __func__, cid);
>   if (c->remote_id != -1) {
>   if ((sc = channel_by_id(c->remote_id)) == NULL)
> - debug2("%s: channel %d n session channel %d",
> + fatal("%s: channel %d missing session channel %d",
>   __func__, c->self, c->remote_id);
>   c->remote_id = -1;
>   sc->ctl_chan = -1;



strptime.3

2010-04-09 Thread Ted Unangst
strptime reads strings, it doesn't write them.

Index: strptime.3
===
RCS file: /home/tedu/cvs/src/lib/libc/time/strptime.3,v
retrieving revision 1.12
diff -u -r1.12 strptime.3
--- strptime.3  19 Oct 2008 11:50:35 -  1.12
+++ strptime.3  10 Apr 2010 04:25:48 -
@@ -164,7 +164,7 @@
 .It Cm \&%Y
 the year, including the century (i.e., 1998).
 .It Cm \&%%
-A `%' is written.
+A `%' is read.
 No argument is converted.
 .El
 .Pp



Re: drm for r600 and r700

2010-04-09 Thread Sviatoslav Chagaev
On Sat, 10 Apr 2010 00:35:09 +0100
Owain Ainsworth  wrote:

> On Sat, Apr 10, 2010 at 02:24:43AM +0300, Sviatoslav Chagaev wrote:
> > On Wed, 24 Mar 2010 02:28:24 +
> > Owain Ainsworth  wrote:
> > 
> > > This diff doesn't have all of the pcidevs that it could have (if it
> > > doesn't attach on your hardware send me the output of pcidump -v and I
> > > will send an extra diff). However, this gives radeondrm(4) the right
> > > bits to work on newer (r600 and r700) chipsets.
> > > 
> > > Please test and report back to me. It should give you 2d acceleration and
> > > XVideo.
> > > 
> > > Cheers,
> > > -0-
> > 
> > (dmesg is attached in the end)
> > 
> > 
> > I installed the latest snapshot of amd64, then
> > cd /usr/src
> > cvs up
> > added 4850 to radeon_drv.c
> 
> May I see the diff for that, please? to check it was correct. I will
> then commit it.

s...@x2:0:/usr/src/sys/dev/pci/drm$ cvs diff -u
cvs server: Diffing .
Index: radeon_drv.c
===
RCS file: /OpenBSD/src/sys/dev/pci/drm/radeon_drv.c,v
retrieving revision 1.39
diff -u -r1.39 radeon_drv.c
--- radeon_drv.c1 Apr 2010 23:24:54 -   1.39
+++ radeon_drv.c9 Apr 2010 23:59:39 -
@@ -505,6 +505,8 @@
CHIP_RV710|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP},
{PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD4650,
CHIP_RV730|RADEON_NEW_MEMMAP},
+   {PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD4850,
+   CHIP_RV770|RADEON_NEW_MEMMAP},
{PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD4870,
CHIP_RV770|RADEON_NEW_MEMMAP},
{PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD4890,
s...@x2:0:/usr/src/sys/dev/pci/drm$

> 
> >and disabled a driver, called 'udl' in
> > GENERIC, because it depended on some .c files which should've been
> > located in a nonexistent directory (dev/videomode) and compiled an MP
> > kernel.
> 
> Your kernel tree is hosed. videomode does exist, as does udl.
> 

Oops

> >
> > snip radeonhd X log and explanation
> >
> >
> 
> Unless it currently fixes a bug in the radeon driver for you, I would
> generally recommend that everyone avoid radeonhd. It is essentially dead
> upstream will all developement going into the radeon driver. Our in tree
> version of radeon is a little old but hopefully will be updated in the
> near future.
> 

Oh, okay. I somehow always thought that 'radeonhd' was a sort of an
'enhanced' version of radeon driver with more features... Must be the
hypnotizing effect of the 'hd' letters =)

I see now that it is irrelevant, but since I originally wanted to also
post the output from Xorg -configure but forgot to do so, here it is:

X.Org X Server 1.6.5
Release Date: 2009-10-11
X Protocol Version 11, Revision 0
Build Operating System: OpenBSD 4.7 amd64 
Current Operating System: OpenBSD x2.my.domain 4.7 GENERIC.MP.x2#0 amd64
Build Date: 06 April 2010  08:22:11AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Apr 10 00:45:44 2010
List of video drivers:
apm
ark
ati
chips
cirrus
dummy
glint
i128
intel
mach64
mga
neomagic
nv
openchrome
r128
radeon
radeonhd
rendition
s3
s3virge
savage
siliconmotion
sis
tdfx
trident
tseng
voodoo
vmware
wsudl
geode
i740
vesa
Xorg:/usr/X11R6/lib/modules/drivers/radeonhd_drv.so: 
/usr/X11R6/lib/modules/drivers/radeon_drv.so : WARNING: 
symbol(AtomBiosRequestList) size mismatch, relink your program
dlopen: File not an ELF object
(EE) Failed to load /usr/X11R6/lib/modules/drivers//voodoo_drv.so
(EE) Failed to load module "voodoo" (loader failed, 7)
dlopen: File not an ELF object
(EE) Failed to load /usr/X11R6/lib/modules/drivers//geode_drv.so
(EE) Failed to load module "geode" (loader failed, 7)
dlopen: File not an ELF object
(EE) Failed to load /usr/X11R6/lib/modules/drivers//i740_drv.so
(EE) Failed to load module "i740" (loader failed, 7)
(++) Using config file: "/root/xorg.conf.new"


Xorg detected your mouse at device /dev/wsmouse.
Please check your config if the mouse is still not
operational, as by default Xorg tries to autodetect
the protocol.

Your xorg.conf file is /root/xorg.conf.new

To test the server, run 'X -config /root/xorg.conf.new'



It chooses 'radeon' as the driver.



Re: drm for r600 and r700

2010-04-09 Thread Owain Ainsworth
On Sat, Apr 10, 2010 at 02:24:43AM +0300, Sviatoslav Chagaev wrote:
> On Wed, 24 Mar 2010 02:28:24 +
> Owain Ainsworth  wrote:
> 
> > This diff doesn't have all of the pcidevs that it could have (if it
> > doesn't attach on your hardware send me the output of pcidump -v and I
> > will send an extra diff). However, this gives radeondrm(4) the right
> > bits to work on newer (r600 and r700) chipsets.
> > 
> > Please test and report back to me. It should give you 2d acceleration and
> > XVideo.
> > 
> > Cheers,
> > -0-
> 
> (dmesg is attached in the end)
> 
> 
> I installed the latest snapshot of amd64, then
> cd /usr/src
> cvs up
> added 4850 to radeon_drv.c

May I see the diff for that, please? to check it was correct. I will
then commit it.

>and disabled a driver, called 'udl' in
> GENERIC, because it depended on some .c files which should've been
> located in a nonexistent directory (dev/videomode) and compiled an MP
> kernel.

Your kernel tree is hosed. videomode does exist, as does udl.

>
> snip radeonhd X log and explanation
>
>

Unless it currently fixes a bug in the radeon driver for you, I would
generally recommend that everyone avoid radeonhd. It is essentially dead
upstream will all developement going into the radeon driver. Our in tree
version of radeon is a little old but hopefully will be updated in the
near future.

> Then I tried putting 'radeon' in /etc/X11/xorg.conf and this time X
> came up with no errors, these are the messages that were outputed on
> the terminal (somewhat different from Xorg.log, say the line 'unknown
> chip id 0x9442' doesn't appear in Xorg.log):
> 

Good.

> Each time I run xrandr, X outputs the following two lines to terminal:
> 
> Dac detection success
> Unhandled monitor type 0

spam, just ignore. would be nice to shut it up though.

> 
> Thank you for your work!
> Feel free to request any additional information, tests, log files etc.

You are welcome.

-0-
-- 
Mustgo, n.:
Any item of food that has been sitting in the refrigerator so
long it has become a science project.
-- Sniglets, "Rich Hall & Friends"



Современный склад: проектирование, технологии, управлениеdn

2010-04-09 Thread Начальнику Склада
**
*  19 - 20 P0P?QP5P;Q 2010P3.
*
*  P!PPP PPPPPP+P  P!PPPP: P?QP>P5P:QP8QP>P2P0P=P8P5,
QP5QP=P>P;P>P3P8P8, QP?QP0P2P;P5P=P8P5.
*
**

PP  P!PPPPPP   PP PPPPP(PP.P"P!P/: QQP:P>P2P>P4P8QP5P;P8 P8
PP2, QP?P5QP8P0P;P8QQQ P>QP4P5P;P>P2
QP=P0P1P6P5P=P8Q P8 P;P>P3P8QQP8P:P8.

P!PPPPPP   PPP!PP/P)PP  P:P>PPQQP5P=P8Q PP4P>P2 QP>P2P5QQP5P=QQP2P>P2P0P=P8Q
QP0P1P>QQ P8 QP0P7P2P8QP8Q QP:P;P0P4QP:P8Q P:P>PP2.

P&PPP, P!PPPPPP P:
  - P?P>P;QQP8QQ P8P=QP>QP QP>P2QP5PP;P>P3P8QQ QP:P;P0P4P>P2 QP0P7P;P8QP=QQ QP8P?P>P2 P8
P=P0P7P=P0QP5P=P8P9, PP4P0Q P8 P>P1P>QQP4P>P2P0P=P8P8 P4P;Q
QP:P;P0P4P8QP>P2P0P=P8Q QP>P2P0QP>P2, P>P1P>QQP4P>P2P0P=P8P8 P4P;Q
P?P5QP5PP1QP0P1P>QP:P8 QP>P2P0QP>P2;
  - QP0QQPQQP5QQ P>QP4P5P;QP=P> QP>P2P5QQP5P=QQP2P>P2P0P=P8P5
QP:P;P0P4P0 P?P> QP0P7P;P8QP=QP< P=P0P?QP0P2P;P5P=P8QP< P2
P:P0QP5QQP2P5 P>QP4P5P;QP=P>P3P> P?QP>P5P:QP0 QP0P7P2P8QP8Q;
  - P7P0P:QP5P?P8QQ P=P0P2QP: P?QP>P5P:QP8QP>P2P0P=P8Q QP:P;P0P4P0 P8
QP0QQP5QP>P2 P?P>P:P0P7P0QP5P;P5P9 Q
QQP5P:QP8P2P=P>QQP8
QP0P1P>QQ.

P PPP#PP,P"PP"P+  P!PPPPPP P:
  - P?P>P2QQP8QQ P:P2P0P;P8QP8P:P0QP8Q QQP0QQP=P8P:P>P2 P2
P2P>P?QP>QP0Q QP0P7P2P8QP8Q QP:P;P0P4P0;
  - P>QP2P>P8QQ PP4P>P;P>P3P8Q QP?QP0P2P;P5P=P8Q
P?QP>P5P:QP0PP4P=QQ P4P0P=P=QQ QP2P>P5P3P>
P?QP5P4P?QP8QQP8Q) QP0QQQP8QP0QQ P?P>P:P0P7P0QP5P;P8
Q
QQP5P:QP8P2P=P>QQP8 QP0P1P>QQ QP:P;P0P4P0 P8
QP5P1P5QQP>P8PQQQ P2QP?P>P;P=QP5PP?P5QP0QP8P9.

**

PP PPP PPPP P!PPPPPP P

P!PPP PPPPPPP  P#PP PPPPPPP  P!PPPPPP
  - P!P>P2QP5PP?P8QP0P=P8Q P8
PP4P5P;P8QP>P2P0P=P8Q P1P8P7P=P5Q-P?QP>QP5QQP>P2;
  - PP>P4QP>P4Q P: QP0QQP5QQ QQP>P8PQQP8
P;P>P3P8QQP8QQP:P8Q P>P?P5QP0QP8P9;
  - P#P?QP0P2P;P5P=P8P5 P?QP>P5P:QP0PQQP5P1P=P>QQP5P9 P?P> P2PQQP8
QP:P;P0P4P0;
  - PQP5P=P:P0 P?P>QQP5P1P=P>QQP8 P?P> P?QP>P?QQP:P=P>P9
QP?P>QP>P1P=P>QQP8 QP:P;P0P4P0;
  - PQP5P=P:P0 P?P> P4P>P?QQQP8PP9 QQP>P8PQQP8
P2QP?P>P;P=P5P=P8Q QP:P;P0P4QP:P8Q P>P?P5QP0QP8P9;

P P0QQPQQP5P=P8P5 P2P0QP8P0P=QP>P2 P8P7PP2 QP0P1P>QQ QP:P;P0P4P0 (P2PQQQ,
P?QP>P?QQP:P=P0Q QP?P>QP>P1P=P>QQQ, QQP>P8PQQQ
P>P?P5QP0QP8P9).
PPP$P PP!P"P#PP"P#P PP+P  PP PPPP"P+:
  - P!QQP>P8QP5P;QQQP2P>/QP5P:P>P=QQQQP:QP8Q QP:P;P0P4P0;
  - P!QP5P;P;P0P6P=P>P5 P>P1P>QQP4P>P2P0P=P8P5;
  - PP>P4Q
P5P-QQP0P=QP?P>QQP=P>P5 P>P1P>QQP4P>P2P0P=P8P5;
  - P!P?P5QP8P0P;QP=P>P5 P>P1P>QQP4P>P2P0P=P8P5 (P4P>P:P>P2P>P5
P>P1P>QQP4P>P2P0P8P5, P:P>P=QQP>P;QP=P>P5 P>P1P>QQP4P>P2P0P=P8P5,
P?P0P;P5QP8QQQQ  P5P5 P>P1P>QQP4P>P2P0P=P8P5 P8 Q.P4.);
  - PP>P=P8QP>P2P0P=P8P5 QP:P;P0P4P0.

P"PP%PPPPPPP'PP!PPP  PP PPPP"P+:
  - PP4QP5QP=P>P5 QQP0P=P5P=P8P5 P?QP>P4QP:QP8P8 P=P0 QP:P;P0P4P5;
  - PP>QP8P2P0QP8Q P?P5QQP>P=P0P;P0 QP>QQQP4P=P8P:P>P2 QP:P;P0P4P0;
  - P P5P6P8P< QP0P1P>QQ QP:P;P0P4QP:P>P3P> P:P>PQQ P?P5QQP>P=P0P;P0
(QP0P7QP0P1P>QP:P0, P4P>P:QPP2P0P=P8P5 P8 P:P>P=QQP>P;Q
P2QP?P>P;P=P5P=P8Q P1P8P7P=P5Q-P?QP>QP5QQP>P2);
  - PQP5P=P:P0 Q
QQP5P:QP8P2P=P>QQP8 QP5P0P;P8P7P0QP8P8
P?QP>P5P:QP>P2 PP4P>P< P4P8P=P0PP3P>
PP4P5P;P8QP>P2P0P=P8Q;
  - P#QP;P>P2P8Q P?QP8P=QQP8Q QP5QP5P=P8Q P>P1 P0QQQP>QQP8P=P3P5
QP:P;P0P4QP:P8Q QQP;QP3.

P"PPP"PP'PP!PPP  P#PP PPPPPPP P!PPPPPP
P"PP%PPPPPPP'PP!PPP  PP PP&PP!P!:
  - PQP8P5PP4QP:QP8P8;
  - PP?QP8QP>P4P>P2P0P=P8P5 P?QP>P4QP:QP8P8;
  - P P0P7PP4QP:QP8P8 P=P0 QQP0P=P5P=P8P5;
  - PQP1P>Q P?QP>P4QP:QP8P8;
  - PP>PP2;
  - P%QP0P=P5P=P8P5 P3P>QP>P2QQ P7P0P:P0P7P>P2;
  - PP>P:QPP=P=P>P5 P>P1P5QP?P5QP5P=P8P5;
  - PP=P2P5P=QP0QP8P7P0QP8Q P=P0 QP:P;P0P4P5;
  - PQQQQP=P>QQQ QP:P;P0P4QP:P>P9 QP;QP6P1Q;
  - P P0QQQQ P?P>P:P0P7P0QP5P;P5P9 P>QP=P>P2P=QQ
P1P8P7P=P5Q-P?QP>QP5QQP>P2;
  - PP>P:P0P7P0QP5P;P8 Q
QQP5P:QP8P2P=P>QQP8 P8
QP5P7QP;QQP0QP8P2P=P>QQP8 P>QP=P>P2P=QQ P?QP>QP5QQP>P2 P=P0
QP:P;P0P4P5;
  - P#QQQ P4P2P8P6P5P=P8Q QP>P2P0QP=P>-PQQP5P9 (P?P5QP2P8QP=QP5 P4P>P:QPP=QQP>P;Q
QP:P;P0P4QP:P>P3P> QQQQP0);
  - P!QP0P=P4P0QQQ QQP0P=P5P=P8Q
QP>P2P0QP=P>-PQQP5P9 b
QP0P7QP0P1P>QP:P0 P8 P:P>P=QQP>P;Q P2QP?P>P;P=P5P=P8Q;
  - PQP0P2P8P;P0 P?QP>P2P5P4P5P=P8Q P8P=P2P5P=QP0QP8P7P0QP8P8;
  - P P>QP0QP8P>P=P=QP9 P?QP8P=QP8P? P>QP3QQP7P:P8;
  - PQP=P>P2P=QP5 QQP0QQP8 QP0QQP>P4P>P2:
P1QP4P6P5QP8QP>P2P0P=P8P5 QP:P;P0P4QP:P>P3P> P:P>P
P?QP>P5P:QP0P< (P4P;Q P4P8QQQP8P1QQP>QQP:P>P9 P:P>P P?P>QQP0P2Q  P8P:P0P< P?QP>P4QP:QP8P8) P8 P:P0P=P0P;P0P< 
QP1QQP0).

PP PPP"PP'PP!PPP  PPPPPPP/ (P2QP?P>P;P=QQQQQ

Aradığınız Emlak Çok Uzağınızda Değil...

2010-04-09 Thread AraEmlakBul Postaci
Resimleri gvremiyorsan}z bu linki kulln}n}z.
AraEmlakBul, email yoluyla kimlik bilgilerinizi veya ~ifrenizi sormaz.
Bu mesaj size AraEmlakBul taraf}ndan, Vzel Duyuru & Promosyonlardan haberdar
olabilmeniz gvnderilmi~tir. Kay}tl} email adresiniz: tech@openbsd.org
Duyurulardan haberdar olmak istemiyorsan}z l|tfen bu linki kullan}n}z
Copyright ) 2010 Abek Reklam Ve Bili~imTeknolojileri Ltd. ^ti.
AraEmlakBul markas} ve logosu,Abek Reklam Ve Bili~im Teknolojileri Ltd. ^ti.
nin tescilli markas}d}r. T|m haklar} sakl}d}r.



■ブログだけで食べていきたいですか?あと1時間・・【Kanaeruメルマガvol.112】

2010-04-09 Thread ブログコンサル倉田俊相 mag2 0000158099
─[PR]─
日曜日に勝つ馬は、土曜日に杉本さんに聞こう

杉本清のメルマガだから言える競馬のお話
 http://a.mag2.jp/y6Ay 
  月額840円 初月無料!
─[PR]─


 人気ブログ作成講座2010最新版 ⇒ http://www.1inblo.com/ *24時間限定

  『倉田俊相のKanaeruメルマガ!』  Vol.112 〜殿堂入りメルマガ〜

 アメブロオフィシャル「0→1」実現ブログ → http://ameblo.jp/1kanaeru/


■こんばんは、倉田俊相@アメブロオフィシャルブロガーです。

 連絡が遅くなって大変申し訳ございません。

 もしかすると間に合わない方もいるかもしれませんね。


■非公開レポートとテンプレートのプレゼントがあと1時間余りです。

 4月10日、コンテンツを大幅に削除。

 あの章、あの特典が、もう読めなくなりますのですぐにチェックして下さいね。

  http://www.1inblo.com/accessup.html


 大事なのはアクセスとクリック率!

 ブログだけで食べていきたい方にはオススメです。

 http://www.1inblo.com/accessup.html




■意外と意識していない人が多いので、アメブロの記事投稿の時間設定について

 書きましたのでよかったら読んでみてください。

 http://ameblo.jp/1kanaeru/entry-10504338473.html




 ご感想やご意見、ご質問も常に受付けています。

 少し返信にお時間を頂戴することもありますが、基本私が全てに目を通し、
 
 返信させていただきますので気軽にメールして下さい。

 kur...@1kanaeru.com



 ブログ(アメブロ)のアクセスアップをテキストで学びたい方はこちら。
 http://www.1inblo.com/

 *ダイジェスト版配布中。
 http://xam.jp/get.php?R=14948




◆━◆

  〜 30日売上ランキング1位獲得! 〜

 いつまであなたは稼げない日記ブログを書き続けますか?

 アメブロガー必見の書!「人気ブログ作成マニュアル2010最新版」

 オフィシャルブロガー倉田俊相著:24時間限定キャンペーン実施中!

  全額返金保証&今なら半年間のサポートを含む豪華7大特典付

  http://www.1inblo.com/

◆━◆

 ☆人気ブログ(アメブロ)をゼロから作って叶えた夢☆

 ・経営者になる
 ・月収300万円以上
 ・高級高層マンションへの引越し
 ・TSUTAYAにてDVDデビュー(全5巻)
 ・TVで自らの冠番組を持つ
 ・番組視聴率ランキング1位
 ・代官山コレクションファッションショーモデル出演
 ・全国社長ブログランキング1位
 ・著書の出版、アマゾン総合ランキング1位
 ・芸能人・著名人との交流 
 ・ブログがamebloオフィシャルブログに
 ・テレビ・雑誌・ラジオ出演や講演依頼多数
 ・西麻布に自分のレストランバーをオープン etc.


◆━◆


 今日もお読み頂きありがとうございました(^^♪

  シフィック代表取締役 倉田俊相




■ [公式]倉田俊相のグルっぽ

  http://group.ameba.jp/group/TKCRnpRuGMSg/

  アメブロ事務局の方が作って下さいました。オフ会なども開催して、私の人脈も
 是非皆さんに紹介していきたいと思っていますので、是非気軽にご参加下さい。
(ここでしか読めない記事もこれから書いていく予定です)





-
ご質問・ご相談はコチラまで⇒ supp...@1kanaeru.com
-

*取材、講演、出版等の依頼・ご相談は以下からお願い致します。

> https://form1ssl.fc2.com/form/?id=137211


━━━
  発行者プロフィール
━━━

有限会社シフィック代表取締役

倉田 俊相 Shunsuke Kurata

1978年福岡県生まれ。O型。
慶應義塾大学総合政策学部卒。

在学中から2年以上に渡りベンチャー企業にて大手ベンダー製品のセキュリティ
評価(Common Criteria)、脆弱性評価等に従事。

学部3年の時には日本IBM人事部にてインターンシップを経験し、
人事という職種に魅了される。卒業後、株式会社リコーに入社し
インターンシップや新卒採用等を主に担当。

2003年12月に同社を退社して起業し、MPM(メモリアルフォトムービー)のDVD制作・
販売、及びインターネットビジネスのコンサルティングを手がける。

教材販売事業をスタート後、月収300万円を達成し、飲食店事業も手がける。

著書にアマゾン総合ランキング1位を獲得した「夢を叶える社長の出会い戦略(ア
スカ出版)」がある。TSUTAYA DISCASにて起業DVD全5巻も好評レンタル中。


趣味:ダーツ(Count Up最高スコア789)、お酒を少々!?

経験スポーツ:空手、ボクシング、サッカー、テニス

得意なスポーツ:ボウリング(最高スコア219)

Publishing:日本経済新聞、CanCam、TOKYO1週間、スクウェア21、JJ、
PINKY、サファリ 他

出演メディア:

ラジオ日本「ビジネス最前線」、First Class、テレビ東京「メデューサの瞳」、
BSフジ「突然シンデレラ」、スカパー、フジサンケイビジネスアイ、
日本テレビ「愛のお悩み解決!シアワセ結婚相談所」 他多数

━━━

「倉田俊相のKanaeruメルマガ」への広告掲載について

【発行部数】約3万3千部

【号外独占広告】18,000円(税込み)

【ヘッダー20行広告】10,000円(税込み)にて承っております。

 *初回限定割引あり

 ご希望の方はこちらまでお申し込み下さい。

 http://form1.fc2.com/form/?id=515470

 ご質問はこちらまで。事務局: supp...@1kanaeru.com

━━━

 ・発行元: 人気ブログの作成支援会社シフィック
  http://www.sific.biz/

 ・運営人気サイトベスト5

   1位 六本木情報通信
  > http://www.roppongi-info.com/

   2位 人気ブログ作成講座2010最新版
  > http://www.1inblo.com/

   3位 六本木イベントサークルKanaeru
  > http://www.1kanaeru.com/

   4位 美容整形INFO
  > http://biyouseikei.qee.jp/

  5位 TOEIC800対策講座
  > http://www.1t-up.com/

 ・執筆: 

   シフィック代表取締役
  心理カウンセラー

   倉田 俊相 Shunsuke Kurata


 ・個人ブログ:  アメブロ公認オフィシャルブログ
 http://ameblo.jp/1kanaeru/


 ・登録・解除: http://www.mag2.com/m/158099.html


 ・連絡先:

  ご意見・ご感想・お問い合わせは、supp...@1kanaeru.com まで


本マガジンは『まぐまぐ』http://www.mag2.com/を利用して発行しています。
━━━
 Copyright(c)2010 SIFIC Inc. Shunsuke Kurata All Rights Reserved.












 
















今日も感謝!ありがとう! 
◎倉田俊相のKanaeruメルマガ!
  のバックナンバー・配信停止はこちら
⇒ http://archive.mag2.com/158099/index.html


━【まぐまぐ!からのお知らせ】━
   ★現金30,000円が、毎月1名様に当たる★
 あなたのガソリン代はもっともっと安くなります。詳しくは↓をチェック
ガソリン代の節約術を公開中!⇒ http://a.mag2.jp/yfc 


▽こちらもいかが?教育・研究ジャンルの注目メルマガ

●齋藤裕一の「教育力」と「勉強力」 〜ココだけのリアル話〜
http://www.mag2.com/w/244213.html  ほぼ 週刊
◎保護者の方のための、教育コンサルタントによる超実践的教育メルマガ。LF
Lの家庭教師代表を務める齋藤裕一がブログとは違った側面から貴重な情報を毎
週お届け!多彩な指導歴をもとに、タメになる教育のエッセンスを生公開中!質
問もOK!
≪筆者の経歴≫塾・家庭教師・予備校・学校で1,000人以上を指導。大学院で教
育工学(授業設計・教師教育など)を専攻。退学・赤点・不登校から首都圏1位。
無名個人塾から超大手塾。3万部超の受験用問題集の執筆コンサル。メディア出
演。ブログgoogle検索3年連続ダントツ1位!
★発行者webもご覧ください↓
http://educationalgroup.seesaa.net/
【まぐまぐ!】━



Re: disklabel - 'P' option

2010-04-09 Thread Sean Kennedy
Meh, nothing like being an Inconsistent mad typist. . .
(I did learn on a Manual Typewriter... It was a "Green" Terminal, it worked
even if the power was out...)

I'd give a Yay to this variant. ( an Even Bigger Yay now it does  'p m'
even... )

-sean

> Date: Thu, 8 Apr 2010 10:03:27 +0200
> Subject: Re: disklabel - 'P' option
> >> 'megabyte-able' printing more consistent to my liking.
> >>
> > Attached is an amended diff that allows the 'P' option to take an
> > argument just as the 'p' option does.
> > That is the crux of the issue. For those of us who like to type less this
> > diff helps, for you people who like type more... you're weird ;)
> >
> > Anyway, with only one yay, I don't think this will progress much further.
> I like this too, fwiw.
> Landry


_
Hotmail & Messenger are available on your phone. Try now.
http://go.microsoft.com/?linkid=9724461