Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

ISO creation with the already installed web development packages in debian

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
krisssachintha
Posts: 1
Joined: 2021-07-29 16:43

ISO creation with the already installed web development packages in debian

#1 Post by krisssachintha »

I am a web developer, currently I installed laravel,php,angular,nodejs frameworks and I need to create a ISO file with the already installed frameworks so that when ever I installed my os to a hard disk the frameworks also be already installed, ( this is a kind of a shortcut thing to reduce the time which goes to installing the frameworks after the OS installation) currently I am using DEBIAN 10. plz help me I am new to linux

User avatar
Uptorn
Posts: 205
Joined: 2022-01-22 01:07
Has thanked: 171 times
Been thanked: 43 times

Re: ISO creation with the already installed web development packages in debian

#2 Post by Uptorn »

It might be less work just to write into a script.

Code: Select all

#!/bin/bash
apt install php-laravel-framework php7.4 libjs-angularjs nodejs
exit 0

Post Reply