Score:2

tar extract ignore timestamp

eu flag

I create myarchive.tar on machine A and use tar -xvf myarchive.tar on machine B where tar complains about timestamps : tar: lib/libboost_date_time.so.1.65.1: time stamp 2023-02-27 20:06:01 is 254449.1210593 s in the future Does this mean that the shared lib did not get extracted? If so, how do I use tar so that it extracts files regardless of timestamps of existing files.

Score:4
cn flag

You can use -m or --touch option to ignore timstamps in archive, and set modification time to extraction time.

From tar --help

  -m, --touch                don't extract file modified time

So use something like this

tar -xvmf myarchive.tar
I sit in a Tesla and translated this thread with Ai:

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.