search for: 262982

Displaying 2 results from an estimated 2 matches for "262982".

Did you mean: 22982
1999 Oct 11
1
if(grep())
Would anyone care to comment if this is the best solution to this problem? > trygrep <-function(x,y) + if(grep(x,y)) + print("yes") else + print("NO") > >trygrep("foo","bafoobar") [1] "yes" > > trygrep("foo","bar") Error in if (grep(x, y)) print("yes") else print("NO") : missing value
2011 Jan 29
2
How to make a bootable USB flash drive manually?
...esktop:~# mkdosfs -F 32 -n ubuntu -v /dev/sdb1 mkdosfs 3.0.7 (24 Dec 2009) /dev/sdb1 has 250 heads and 62 sectors per track, logical sector size is 512, using 0xf8 media descriptor, with 2107998 sectors; file system has 2 32-bit FATs and 8 sectors per cluster. FAT size is 2055 sectors, and provides 262982 clusters. Volume ID is c17d6cc8, volume label ubuntu . root at martin-desktop:~# 6) copied MBR code area root at martin-desktop:~# dd conv=notrunc bs=440 count=1 if=/usr/lib/syslinux/mbr.bin of=/dev/sdb 0+1 records in 0+1 records out 404 bytes (404 B) copied, 0.0178841 s, 22.6 kB/s root at m...