How to create large dummy file
Fsutil.exe is a built in filesystem tool that is useful to do file system related operations from command line. We can create a file of required size using this tool.
syntax to create a file:
fsutil file createnew filename length
For example, to create a dummy file test.txt, with size as 50MB :
fsutil file createnew test.txt 52428800
Note that the above command creates a sparse file which does not have any real data. If you want to create a file with real data then you can use the below command line script.
echo "This is just a sample line appended to create a big file.. " > dummy.txt for /L %i in (1,1,14) do type dummy.txt >> dummy.txt
(Run the above two commands one after another or you can add them to a batch file.)
The above commands create a 1 MB file dummy.txt within few seconds. If you want to create 1 GB file you need to change the second command as below.
echo "This is just a sample line appended to create a big file.. " > dummy.txt for /L %i in (1,1,24) do type dummy.txt >> dummy.txt
Explanation:
The first command(echo…) creates the file dummy.txt with 64 bytes.
The second command, runs in a loop for 24 times, and each times doubles the size of the file, by appending it to itself.
One more example:
Create a 100MB file with real data:
echo "This is just a sample line appended to create a big file. " > dummy.txt for /L %i in (1,1,21) do type dummy.txt >> dummy.txt
The above command creates a 128 MB file.
archived hp printer drivers
archived hp printer drivers
Change drive for IBM Lotus database
Change drive for IBM Lotus database
Change
Komputer\HKEY_CURRENT_USER\Software\Lotus\Notes
change drive from c: to d:
D:\Users\user\AppData\Local\IBM\Notes\Data\notes.ini
Chenge notes.ini
D:\Users\user\AppData\Local\IBM\Notes\Data\notes.ini
change this line
Directory=D:\Users\user\AppData\Local\IBM\Notes\Data
K2 joomla menu problem
K2 joomla menu problem
The requested page can't be found.
An error has occurred while processing your request.
You may not be able to visit this page because of:
an out-of-date bookmark/favourite
a mistyped address
a search engine that has an out-of-date listing for this site
you have no access to this page
If difficulties persist, please contact the System Administrator of this site and report the error below.
#0 Call to undefined function mb_internal_encoding()
Error log:
[Mon Apr 13 22:25:42.637118 2020] [php7:warn] [pid 11393] [client 192.168.13.1:64238] PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2
"? in /www/prywatne/posadzkarze.b1s.eu/templates/dla_posadzka/functions.php on line 182, referer: http://posadzkarze.b1s.eu/you-tube
enable PHP MBSTRING!!
find instaled php module
php -m
Install mbstring
yum install php-mbstring
restart httpd
service httpd restart






