how do you make a list/file for pacman to install from
Clash Royale CLAN TAG#URR8PPP
I am trying to move from one arch install a (partitioned one) to another (a less-partitioned one) on my computer and I want a similar set up. So I was wondering if there was a simple way to get pacman to install the same packages.
I was thinking of something like pacman -Qe | awk 'print $1' > package_list.txt
then creating a script to install from that list.
Is there a way I can create that script in a few commands or how should I go about doing this?
bash shell-script arch-linux pacman
add a comment |
I am trying to move from one arch install a (partitioned one) to another (a less-partitioned one) on my computer and I want a similar set up. So I was wondering if there was a simple way to get pacman to install the same packages.
I was thinking of something like pacman -Qe | awk 'print $1' > package_list.txt
then creating a script to install from that list.
Is there a way I can create that script in a few commands or how should I go about doing this?
bash shell-script arch-linux pacman
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39
add a comment |
I am trying to move from one arch install a (partitioned one) to another (a less-partitioned one) on my computer and I want a similar set up. So I was wondering if there was a simple way to get pacman to install the same packages.
I was thinking of something like pacman -Qe | awk 'print $1' > package_list.txt
then creating a script to install from that list.
Is there a way I can create that script in a few commands or how should I go about doing this?
bash shell-script arch-linux pacman
I am trying to move from one arch install a (partitioned one) to another (a less-partitioned one) on my computer and I want a similar set up. So I was wondering if there was a simple way to get pacman to install the same packages.
I was thinking of something like pacman -Qe | awk 'print $1' > package_list.txt
then creating a script to install from that list.
Is there a way I can create that script in a few commands or how should I go about doing this?
bash shell-script arch-linux pacman
bash shell-script arch-linux pacman
edited Apr 5 '16 at 10:27
techraf
4,255102242
4,255102242
asked Apr 5 '16 at 10:21
Llywelyn Clay-MichaelLlywelyn Clay-Michael
11
11
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39
add a comment |
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39
add a comment |
1 Answer
1
active
oldest
votes
You can use pacman -Qeq
instead of pacman -Qe | awk 'print $1'
. And pacman can not install AUR packages, better keep them in a separate list or use an AUR helper like pacaur
or yaourt
.
So, if you use an AUR helper like pacaur, you can export all explicitly installed packages with:
pacman -Qqe > package_list.txt
Or if you prefer only native and explicitly installed packages:
pacman -Qqen > package_list.txt
To install the packages listed in the file:
pacman -S - < package_list.txt
Replace pacman with pacaur or your AUR helper if needed.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f274396%2fhow-do-you-make-a-list-file-for-pacman-to-install-from%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use pacman -Qeq
instead of pacman -Qe | awk 'print $1'
. And pacman can not install AUR packages, better keep them in a separate list or use an AUR helper like pacaur
or yaourt
.
So, if you use an AUR helper like pacaur, you can export all explicitly installed packages with:
pacman -Qqe > package_list.txt
Or if you prefer only native and explicitly installed packages:
pacman -Qqen > package_list.txt
To install the packages listed in the file:
pacman -S - < package_list.txt
Replace pacman with pacaur or your AUR helper if needed.
add a comment |
You can use pacman -Qeq
instead of pacman -Qe | awk 'print $1'
. And pacman can not install AUR packages, better keep them in a separate list or use an AUR helper like pacaur
or yaourt
.
So, if you use an AUR helper like pacaur, you can export all explicitly installed packages with:
pacman -Qqe > package_list.txt
Or if you prefer only native and explicitly installed packages:
pacman -Qqen > package_list.txt
To install the packages listed in the file:
pacman -S - < package_list.txt
Replace pacman with pacaur or your AUR helper if needed.
add a comment |
You can use pacman -Qeq
instead of pacman -Qe | awk 'print $1'
. And pacman can not install AUR packages, better keep them in a separate list or use an AUR helper like pacaur
or yaourt
.
So, if you use an AUR helper like pacaur, you can export all explicitly installed packages with:
pacman -Qqe > package_list.txt
Or if you prefer only native and explicitly installed packages:
pacman -Qqen > package_list.txt
To install the packages listed in the file:
pacman -S - < package_list.txt
Replace pacman with pacaur or your AUR helper if needed.
You can use pacman -Qeq
instead of pacman -Qe | awk 'print $1'
. And pacman can not install AUR packages, better keep them in a separate list or use an AUR helper like pacaur
or yaourt
.
So, if you use an AUR helper like pacaur, you can export all explicitly installed packages with:
pacman -Qqe > package_list.txt
Or if you prefer only native and explicitly installed packages:
pacman -Qqen > package_list.txt
To install the packages listed in the file:
pacman -S - < package_list.txt
Replace pacman with pacaur or your AUR helper if needed.
edited Jul 23 '16 at 22:26
techraf
4,255102242
4,255102242
answered Jul 23 '16 at 21:58
goetzcgoetzc
1134
1134
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f274396%2fhow-do-you-make-a-list-file-for-pacman-to-install-from%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You might try packup: aur.archlinux.org/packages/packup It's a helper script. Also see: bbs.archlinux.org/viewtopic.php?id=56601
– muru
Apr 5 '16 at 10:34
i will try that though it does look like a bulky solution
– Llywelyn Clay-Michael
Apr 5 '16 at 10:39