2013年08月08日 wine-1.6 [長年日記]
_ wine-1.6
Build
$ tar xvvf wine-1.6.tar.bz2 $ cd wine-1.6 $ ./configure && make # make install && ldconfig
Setting
$ winecfg &
- ~/.wine/ is system directory for wine
- ~/.wine/drive_c/ is C: drive for wine
- ~/.wine/dosdevices/ consists of symblic links for DOS_DRIVE_NAME to physical directory like following.
lrwxrwxrwx 1 m-ito m-ito 10 Aug 7 22:00 c: -> ../drive_c/ lrwxrwxrwx 1 m-ito m-ito 10 Aug 1 22:00 z: -> //
fix for wine preloader: Warning: failed to reserve range 00000000-00010000
# sysctl -w vm.mmap_min_addr=0
winetricks
$ tar xvvf cabextract-1.4.tar.gz $ cd cabextract-1.4 $ ./configure && make # make install && ldconfig
http://wiki.winehq.org/winetricks
$ wget http://winetricks.org/winetricks $ vi winetricks #!/bin/sh alias wget='wget --no-check-certificate' # <-- add line ... snip ... $ chmod +x winetricks $ ./winetricks
Registry for Kanji charcters
~/.wine/user.reg
[Software\\Wine\\Fonts\\Replacements] "Courier New"="Courier New" "Comic Sans MS"="Comic Sans MS" "FixedSys"="IPAGothic" "Lucida Sans Unicode"="Lucida Sans" "Microsoft Sans Serif"="DejaVu Sans" "MS Pゴシック"="IPAPGothic" "MS PGothic"="IPAPGothic" "MS P明朝"="IPAPMincho" "MS UI Gothic"="IPAPGothic" "MS ゴシック"="IPAGothic" "MS Gothic"="IPAGothic" "MS 明朝"="IPAMincho" "Small fonts"="IPAGothic" "System"="IPAGothic" "Terminal"="IPAPGothic" "Verdana"="IPAPGothic"
Registry for IME(kinput2)
~/.wine/user.reg
[Software\\Wine\\X11 Driver] "InputStyle"="root"
Run
$ cd ~/.wine/drive_c $ wine windows/system32/cmd.exe Wine CMD Version 5.1.2600 (1.6) C:\>
If you want to omit "fixme: ...snip..." messages then
$ WINEDEBUG=-all wine ...snip...
Misc
install dlls, fonts, app etc and many configurations for Wine :P
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 ~/INSTALLED/winetricks
reboot or initialize(?) for Wine environment
$ wineboot
configuration for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 winecfg
file manager for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 winefile
or
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine explorer
command console for Wine
$ WINEDEBUG=-all LC_ALL=en_EN.UTF-8 LANG=en_EN.UTF-8 wineconsole cmd
or
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine cmd
control panel for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine control
notepad for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine notepad
task manager for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine taskmgr
wordprocessor for Wine
$ WINEDEBUG=-all LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8 wine wordpad
2013年08月27日 rdev from util-linux-ng-2.17 [長年日記]
_ rdev from util-linux-ng-2.17
I took sources of rdev from util-linux-ng-2.17 :P
rdev.c
/* util-linux-ng-2.17 rdev.c - query/set root device. ------------------------------------------------------------------------- Date: Sun, 27 Dec 1992 15:55:31 +0000 Subject: Re: rdev From: almesber@nessie.cs.id.ethz.ch (Werner Almesberger) To: Rik Faith <faith@cs.unc.edu> There are quite a few versions of rdev: - the original rootdev that only printed the current root device, by Linus. - rdev that does what rootdev did and that also allows you to change the root (and swap) device, by me. - rdev got renamed to setroot and I think even to rootdev on various distributions. - Peter MacDonald added video mode and RAM disk setting and included this version on SLS, called rdev again. I've attached his rdev.c to this mail. ------------------------------------------------------------------------- Date: 11 Mar 92 21:37:37 GMT Subject: rdev - query/set root device From: almesber@nessie.cs.id.ethz.ch (Werner Almesberger) Organization: Swiss Federal Institute of Technology (ETH), Zurich, CH With all that socket, X11, disk driver and FS hacking going on, apparently nobody has found time to address one of the minor nuisances of life: set- ting the root FS device is still somewhat cumbersome. I've written a little utility which can read and set the root device in boot images: rdev accepts an optional offset argument, just in case the address should ever move from 508. If called without arguments, rdev outputs an mtab line for the current root FS, just like /etc/rootdev does. ramsize sets the size of the ramdisk. If size is zero, no ramdisk is used. vidmode sets the default video mode at bootup time. -1 uses default video mode, -2 uses menu. ------------------------------------------------------------------------- Sun Dec 27 10:42:16 1992: Minor usage changes, faith@cs.unc.edu. Tue Mar 30 09:31:52 1993: rdev -Rn to set root readonly flag, sct@dcs.ed.ac.uk Wed Jun 22 21:12:29 1994: Applied patches from Dave (gentzel@nova.enet.dec.com) to prevent dereferencing the NULL pointer, faith@cs.unc.edu 1999-02-22 Arkadiusz Mi鐃kiewicz <misiek@pld.ORG.PL> - added Native Language Support ------------------------------------------------------------------------- */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <errno.h> #include <fcntl.h> #include <dirent.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include "nls.h" /* rdev.c - query/set root device. */ static void usage(void) { puts(_("usage: rdev [ -rv ] [ -o OFFSET ] [ IMAGE [ VALUE [ OFFSET ] ] ]")); puts(_(" rdev /dev/fd0 (or rdev /linux, etc.) displays the current ROOT device")); puts(_(" rdev /dev/fd0 /dev/hda2 sets ROOT to /dev/hda2")); puts(_(" rdev -R /dev/fd0 1 set the ROOTFLAGS (readonly status)")); puts(_(" rdev -r /dev/fd0 627 set the RAMDISK size")); puts(_(" rdev -v /dev/fd0 1 set the bootup VIDEOMODE")); puts(_(" rdev -o N ... use the byte offset N")); puts(_(" rootflags ... same as rdev -R")); puts(_(" ramsize ... same as rdev -r")); puts(_(" vidmode ... same as rdev -v")); puts(_("Note: video modes are: -3=Ask, -2=Extended, -1=NormalVga, 1=key1, 2=key2,...")); puts(_(" use -R 1 to mount root readonly, -R 0 for read/write.")); exit(-1); } #define DEFAULT_OFFSET 508 static void die(char *msg) { perror(msg); exit(1); } /* Earlier rdev fails on /dev/ida/c0d0p1 so we allow for recursion in /dev. -- Paul Clements */ /* In fact devfs needs deep recursion. */ static int find_dev_recursive(char *dirnamebuf, int number) { DIR *dp; struct dirent *dir; struct stat s; int dirnamelen = 0; if ((dp = opendir(dirnamebuf)) == NULL) die("opendir"); dirnamelen = strlen(dirnamebuf); while ((dir = readdir(dp)) != NULL) { if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, "..")) continue; if (dirnamelen + 1 + strlen(dir->d_name) > PATH_MAX) continue; dirnamebuf[dirnamelen] = '/'; strcpy(dirnamebuf+dirnamelen+1, dir->d_name); if (lstat(dirnamebuf, &s) < 0) continue; if ((s.st_mode & S_IFMT) == S_IFBLK && s.st_rdev == number) return 1; if ((s.st_mode & S_IFMT) == S_IFDIR && find_dev_recursive(dirnamebuf, number)) return 1; } dirnamebuf[dirnamelen] = 0; closedir(dp); return 0; } static char * find_dev(int number) { static char name[PATH_MAX+1]; if (!number) return "Boot device"; strcpy(name, "/dev"); if (find_dev_recursive(name, number)) return name; sprintf(name, "0x%04x", number); return name; } /* The enum values are significant, things are stored in this order, see bootsect.S */ enum { RDEV, VIDMODE, RAMSIZE, __swapdev__, __syssize__, ROOTFLAGS }; char *cmdnames[6] = { "rdev", "vidmode", "ramsize", "", "", "rootflags"}; char *desc[6] = { "Root device", "Video mode", "Ramsize", "", "", "Root flags"}; #define shift(n) argv+=n,argc-=n int main(int argc, char **argv) { int image, offset, dev_nr, i, newoffset=-1; char *ptr; unsigned short val, have_val; struct stat s; int cmd; setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); /* use the command name to figure out what we have to do - ugly */ cmd = RDEV; if ((ptr = strrchr(argv[0],'/')) != NULL) ptr++; else ptr = argv[0]; for (i=0; i<=5; i++) { if (!strcmp(ptr,cmdnames[i])) { cmd = i; break; } } while (argc > 1) { if (argv[1][0] != '-') break; switch (argv[1][1]) { case 'R': cmd = ROOTFLAGS; shift(1); break; case 'r': cmd = RAMSIZE; shift(1); break; case 'v': cmd = VIDMODE; shift(1); break; case 'o': if (argv[1][2]) { newoffset = atoi(argv[1]+2); shift(1); break; } else if (argc > 2) { newoffset = atoi(argv[2]); shift(2); break; } /* Fall through. . . */ default: usage(); } } /* Here the only sensible way of using rdev */ if (argc == 1) { if (cmd == RDEV) { if (stat("/",&s) < 0) die("/"); printf("%s /\n", find_dev(s.st_dev)); exit(0); } usage(); } if (argc > 4) usage(); /* Ancient garbage.. */ offset = DEFAULT_OFFSET-cmd*2; if (newoffset >= 0) offset = newoffset; if (argc == 4) offset = atoi(argv[3]); have_val = 0; if (argc >= 3) { if (cmd == RDEV) { if (isdigit(*argv[2])) { /* earlier: specify offset */ /* now: specify major,minor */ char *p; unsigned int ma,mi; if ((p = strchr(argv[2], ',')) == NULL) die(_("missing comma")); ma = atoi(argv[2]); mi = atoi(p+1); val = ((ma<<8) | mi); } else { char *device = argv[2]; if (stat(device,&s) < 0) die(device); val = s.st_rdev; } } else { val = atoi(argv[2]); } have_val = 1; } if (have_val) { if ((image = open(argv[1],O_WRONLY)) < 0) die(argv[1]); if (lseek(image,offset,0) < 0) die("lseek"); if (write(image,(char *)&val,2) != 2) die(argv[1]); if (close(image) < 0) die("close"); } else { if ((image = open(argv[1],O_RDONLY)) < 0) die(argv[1]); if (lseek(image,offset,0) < 0) die("lseek"); dev_nr = 0; if (read(image,(char *)&dev_nr,2) != 2) die(argv[1]); if (close(image) < 0) die("close"); fputs(desc[cmd], stdout); if (cmd == RDEV) printf(" %s\n", find_dev(dev_nr)); else printf(" %d\n", dev_nr); } return 0; }
nls.h
/* util-linux-ng-2.17 <dir_3202f5afc96c61c1ccf56bb83782f07b.html> include nls.h */ #ifndef UTIL_LINUX_NLS_H #define UTIL_LINUX_NLS_H int main(int argc, char *argv[]); #ifndef LOCALEDIR #define LOCALEDIR "/usr/share/locale" #endif #ifdef HAVE_LOCALE_H # include <locale.h> #else # undef setlocale # define setlocale(Category, Locale) /* empty */ #endif #ifdef ENABLE_NLS # include <libintl.h> # define _(Text) gettext (Text) # ifdef gettext_noop # define N_(String) gettext_noop (String) # else # define N_(String) (String) # endif #else # undef bindtextdomain # define bindtextdomain(Domain, Directory) /* empty */ # undef textdomain # define textdomain(Domain) /* empty */ # define _(Text) (Text) # define N_(Text) (Text) #endif #endif /* UTIL_LINUX_NLS_H */
quick Makefile :P
all: rdev rdev: rdev.c nls.h cc -o rdev rdev.c install: install rdev /usr/local/sbin/