• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

problem with migration cpanel to plesk

Jozosk

New Pleskian
Hello,
i have problem with migration from old cpanel server to new plesk server.

I got this error:
Warning:
Couldn't get 'cgi_bin_mode' attribute for domain where cgi-bin dir is '' and docroot dir is '/home/data*/public_html'. Domain will be migrated in that way as if its cgi-bin directory was located under docroot.
Info:
The component Microsoft FrontPage is not installed. It will be disabled for the following objects: data*.cz
Info:
The component Spam Filter is not installed. It will be disabled for the following objects: data*.cz
Warning:
Execution of dd if=/dev/zero of=/usr/local/psa/PMM/rsessions/20131007165148958/.fs_a4nIAf bs=10485760 count=1 failed with return code 1.
Stderr is
dd: opening `/dev/zero': No such file or directory

Please how to solve this problem?
Thanks
 
It appears the error is due to your filesystem lacking a zero device, /dev/zero
Run "ls -l /dev" first to see if /dev/zero already exists, and is a "character" device, mode 666 (crw-rw-rw-) with major 1 and minor 5. It should look like this:

crw-rw-rw- 1 root root 1, 5 Dec 31 1969 zero

If it doesn't exist, you might try executing the following commands to fix it (although devfsd should create /dev/zero)

# cd /dev
# mknod --mode=666 zero c 1 5


Run "ls -l" afterwards to see if /dev/zero was successfully created, and then try migration again.
 
Thanks

next error with rsync:
Host key verification failed.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(600) [sender=3.0.6]
 
Back
Top