Linux mint files color changed in terminal

Multi tool use
Clash Royale CLAN TAG#URR8PPP
I am using Linux Minter 19.0 on two machines.
I have a src and destination folder.
My src folder is on my local machine, and the dest folder is on a remote machine.
I ran rsync to move files from src to dest over ssh.
After I open two terminals. One on the local machine viewing src folder. The other terminal is viewing the dest folder on the remote machine over ssh.
When I run ls command in the two folders, the files colorings in the different terminals are different.
Why is this, and what does this mean?
Why are the same files different color in the two terminals? For example out.wav is green in one and blue in the other.
ssh files linux-mint terminal rsync
add a comment |
I am using Linux Minter 19.0 on two machines.
I have a src and destination folder.
My src folder is on my local machine, and the dest folder is on a remote machine.
I ran rsync to move files from src to dest over ssh.
After I open two terminals. One on the local machine viewing src folder. The other terminal is viewing the dest folder on the remote machine over ssh.
When I run ls command in the two folders, the files colorings in the different terminals are different.
Why is this, and what does this mean?
Why are the same files different color in the two terminals? For example out.wav is green in one and blue in the other.
ssh files linux-mint terminal rsync
add a comment |
I am using Linux Minter 19.0 on two machines.
I have a src and destination folder.
My src folder is on my local machine, and the dest folder is on a remote machine.
I ran rsync to move files from src to dest over ssh.
After I open two terminals. One on the local machine viewing src folder. The other terminal is viewing the dest folder on the remote machine over ssh.
When I run ls command in the two folders, the files colorings in the different terminals are different.
Why is this, and what does this mean?
Why are the same files different color in the two terminals? For example out.wav is green in one and blue in the other.
ssh files linux-mint terminal rsync
I am using Linux Minter 19.0 on two machines.
I have a src and destination folder.
My src folder is on my local machine, and the dest folder is on a remote machine.
I ran rsync to move files from src to dest over ssh.
After I open two terminals. One on the local machine viewing src folder. The other terminal is viewing the dest folder on the remote machine over ssh.
When I run ls command in the two folders, the files colorings in the different terminals are different.
Why is this, and what does this mean?
Why are the same files different color in the two terminals? For example out.wav is green in one and blue in the other.
ssh files linux-mint terminal rsync
ssh files linux-mint terminal rsync
edited Dec 23 '18 at 2:31
asked Dec 23 '18 at 1:18
ScottF
16718
16718
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
File colors in Linux, tell you things about the file that the extension if it even has one might or might not.
- Blue: Directory
- Green: Executable or recognized data file
- Sky Blue: Symbolic link file
- Yellow with black background: Device
- Pink: Graphic image file
- Red: Archive file
- Red with black background: Broken link
The colors can be changed in your .bashrc like DIR 01;34 for directories, this should be stock. Changing them is as easy as adjusting the numbers, formatting is done like what is seen above 01;34 and more information on color numbering can be found: Here
More information on changing colors can be found: Here
The differences you are seeing is more than likely a result of the colorscheme on the remote machine. More information on this principle idea can be found: Here
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
|
show 1 more 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%2f490547%2flinux-mint-files-color-changed-in-terminal%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
File colors in Linux, tell you things about the file that the extension if it even has one might or might not.
- Blue: Directory
- Green: Executable or recognized data file
- Sky Blue: Symbolic link file
- Yellow with black background: Device
- Pink: Graphic image file
- Red: Archive file
- Red with black background: Broken link
The colors can be changed in your .bashrc like DIR 01;34 for directories, this should be stock. Changing them is as easy as adjusting the numbers, formatting is done like what is seen above 01;34 and more information on color numbering can be found: Here
More information on changing colors can be found: Here
The differences you are seeing is more than likely a result of the colorscheme on the remote machine. More information on this principle idea can be found: Here
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
|
show 1 more comment
File colors in Linux, tell you things about the file that the extension if it even has one might or might not.
- Blue: Directory
- Green: Executable or recognized data file
- Sky Blue: Symbolic link file
- Yellow with black background: Device
- Pink: Graphic image file
- Red: Archive file
- Red with black background: Broken link
The colors can be changed in your .bashrc like DIR 01;34 for directories, this should be stock. Changing them is as easy as adjusting the numbers, formatting is done like what is seen above 01;34 and more information on color numbering can be found: Here
More information on changing colors can be found: Here
The differences you are seeing is more than likely a result of the colorscheme on the remote machine. More information on this principle idea can be found: Here
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
|
show 1 more comment
File colors in Linux, tell you things about the file that the extension if it even has one might or might not.
- Blue: Directory
- Green: Executable or recognized data file
- Sky Blue: Symbolic link file
- Yellow with black background: Device
- Pink: Graphic image file
- Red: Archive file
- Red with black background: Broken link
The colors can be changed in your .bashrc like DIR 01;34 for directories, this should be stock. Changing them is as easy as adjusting the numbers, formatting is done like what is seen above 01;34 and more information on color numbering can be found: Here
More information on changing colors can be found: Here
The differences you are seeing is more than likely a result of the colorscheme on the remote machine. More information on this principle idea can be found: Here
File colors in Linux, tell you things about the file that the extension if it even has one might or might not.
- Blue: Directory
- Green: Executable or recognized data file
- Sky Blue: Symbolic link file
- Yellow with black background: Device
- Pink: Graphic image file
- Red: Archive file
- Red with black background: Broken link
The colors can be changed in your .bashrc like DIR 01;34 for directories, this should be stock. Changing them is as easy as adjusting the numbers, formatting is done like what is seen above 01;34 and more information on color numbering can be found: Here
More information on changing colors can be found: Here
The differences you are seeing is more than likely a result of the colorscheme on the remote machine. More information on this principle idea can be found: Here
edited Dec 23 '18 at 2:39
answered Dec 23 '18 at 2:22


Michael Prokopec
1,062116
1,062116
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
|
show 1 more comment
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
This answer does not address my specific scenario. Why do my same file types differ in color?
– ScottF
Dec 23 '18 at 2:26
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Just updated my answer.
– Michael Prokopec
Dec 23 '18 at 2:29
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Why is the same file different colors in the different terminals?
– ScottF
Dec 23 '18 at 2:31
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
Because the colorschemes are different.
– Michael Prokopec
Dec 23 '18 at 2:32
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
How. They are both the exact same terminal application on the same machine sharing the same settings. That would not be possible.
– ScottF
Dec 23 '18 at 2:34
|
show 1 more 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f490547%2flinux-mint-files-color-changed-in-terminal%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