Unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
I try to install a .deb file in my vagrant box that use generic/ubuntu1604 image but i got the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
A queue based service for watching directories for files to process as per its configuration.
Do you want to install the software package? [y/N]:y
(Reading database ... 108439 files and directories currently installed.)
Preparing to unpack wtbuild.deb ...
dpkg (subprocess): unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst): No such file or directory
dpkg: error processing archive wtbuild.deb (--install):
subprocess new pre-installation script returned error exit status 2
Errors were encountered while processing:
wtbuild.deb
error
That only happens with that image. If i try to install the same .deb file in my linux machine ( xenial ) or in another vagrant box with a different linux image the .deb file is installed correctly.
dpkg deb vagrant
add a comment |Â
up vote
1
down vote
favorite
I try to install a .deb file in my vagrant box that use generic/ubuntu1604 image but i got the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
A queue based service for watching directories for files to process as per its configuration.
Do you want to install the software package? [y/N]:y
(Reading database ... 108439 files and directories currently installed.)
Preparing to unpack wtbuild.deb ...
dpkg (subprocess): unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst): No such file or directory
dpkg: error processing archive wtbuild.deb (--install):
subprocess new pre-installation script returned error exit status 2
Errors were encountered while processing:
wtbuild.deb
error
That only happens with that image. If i try to install the same .deb file in my linux machine ( xenial ) or in another vagrant box with a different linux image the .deb file is installed correctly.
dpkg deb vagrant
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I try to install a .deb file in my vagrant box that use generic/ubuntu1604 image but i got the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
A queue based service for watching directories for files to process as per its configuration.
Do you want to install the software package? [y/N]:y
(Reading database ... 108439 files and directories currently installed.)
Preparing to unpack wtbuild.deb ...
dpkg (subprocess): unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst): No such file or directory
dpkg: error processing archive wtbuild.deb (--install):
subprocess new pre-installation script returned error exit status 2
Errors were encountered while processing:
wtbuild.deb
error
That only happens with that image. If i try to install the same .deb file in my linux machine ( xenial ) or in another vagrant box with a different linux image the .deb file is installed correctly.
dpkg deb vagrant
I try to install a .deb file in my vagrant box that use generic/ubuntu1604 image but i got the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
A queue based service for watching directories for files to process as per its configuration.
Do you want to install the software package? [y/N]:y
(Reading database ... 108439 files and directories currently installed.)
Preparing to unpack wtbuild.deb ...
dpkg (subprocess): unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst): No such file or directory
dpkg: error processing archive wtbuild.deb (--install):
subprocess new pre-installation script returned error exit status 2
Errors were encountered while processing:
wtbuild.deb
error
That only happens with that image. If i try to install the same .deb file in my linux machine ( xenial ) or in another vagrant box with a different linux image the .deb file is installed correctly.
dpkg deb vagrant
dpkg deb vagrant
asked Jan 31 at 17:15
![](https://lh6.googleusercontent.com/-RsbFVGcDESs/AAAAAAAAAAI/AAAAAAAAEGk/PG9EWdBapno/photo.jpg?sz=32)
![](https://lh6.googleusercontent.com/-RsbFVGcDESs/AAAAAAAAAAI/AAAAAAAAEGk/PG9EWdBapno/photo.jpg?sz=32)
Javier Galarza
62
62
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
You're missing the executable that appears in the preinst script's shebang line.
- Extract the package metadata to a temporary directory:
dpkg -e wtbuild.deb tmp
- Open
tmp/preinst
in a text editor. - The first line should begin with the characters
#!
. The text that appears after that is the program that will be used to run the file. You're missing that program. - Determine the package that provides the missing program. For example, if the program is
/usr/bin/python
, you should install thepython
package:sudo apt-get install python
If you maintain wtbuild.deb, you should take the time to add the missing dependency to the package's control
file. If someone else maintains wtbuild.deb, you should file a bug report and include the name of the missing dependency package.
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You're missing the executable that appears in the preinst script's shebang line.
- Extract the package metadata to a temporary directory:
dpkg -e wtbuild.deb tmp
- Open
tmp/preinst
in a text editor. - The first line should begin with the characters
#!
. The text that appears after that is the program that will be used to run the file. You're missing that program. - Determine the package that provides the missing program. For example, if the program is
/usr/bin/python
, you should install thepython
package:sudo apt-get install python
If you maintain wtbuild.deb, you should take the time to add the missing dependency to the package's control
file. If someone else maintains wtbuild.deb, you should file a bug report and include the name of the missing dependency package.
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
add a comment |Â
up vote
1
down vote
You're missing the executable that appears in the preinst script's shebang line.
- Extract the package metadata to a temporary directory:
dpkg -e wtbuild.deb tmp
- Open
tmp/preinst
in a text editor. - The first line should begin with the characters
#!
. The text that appears after that is the program that will be used to run the file. You're missing that program. - Determine the package that provides the missing program. For example, if the program is
/usr/bin/python
, you should install thepython
package:sudo apt-get install python
If you maintain wtbuild.deb, you should take the time to add the missing dependency to the package's control
file. If someone else maintains wtbuild.deb, you should file a bug report and include the name of the missing dependency package.
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
add a comment |Â
up vote
1
down vote
up vote
1
down vote
You're missing the executable that appears in the preinst script's shebang line.
- Extract the package metadata to a temporary directory:
dpkg -e wtbuild.deb tmp
- Open
tmp/preinst
in a text editor. - The first line should begin with the characters
#!
. The text that appears after that is the program that will be used to run the file. You're missing that program. - Determine the package that provides the missing program. For example, if the program is
/usr/bin/python
, you should install thepython
package:sudo apt-get install python
If you maintain wtbuild.deb, you should take the time to add the missing dependency to the package's control
file. If someone else maintains wtbuild.deb, you should file a bug report and include the name of the missing dependency package.
You're missing the executable that appears in the preinst script's shebang line.
- Extract the package metadata to a temporary directory:
dpkg -e wtbuild.deb tmp
- Open
tmp/preinst
in a text editor. - The first line should begin with the characters
#!
. The text that appears after that is the program that will be used to run the file. You're missing that program. - Determine the package that provides the missing program. For example, if the program is
/usr/bin/python
, you should install thepython
package:sudo apt-get install python
If you maintain wtbuild.deb, you should take the time to add the missing dependency to the package's control
file. If someone else maintains wtbuild.deb, you should file a bug report and include the name of the missing dependency package.
answered Feb 7 at 21:29
Zenexer
567615
567615
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
add a comment |Â
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
1
1
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
Thanks @Zenexer. This pointed me in the right direction. My shebang was off but not because the file didn't exist but because I had CrLf line endings instead of Lf.
â N Jones
Mar 2 at 22:16
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
@NJones That's effectively the same thing. Linux treats the CR as part of the executable name, so it's searching for a binary that (probably) doesn't exist.
â Zenexer
Mar 3 at 2:35
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1001795%2funable-to-execute-new-pre-installation-script-var-lib-dpkg-tmp-ci-preinst%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password