【开源项目】libfaketime安装、使用——小白教程

项目

Github:GitHub - wolfcw/libfaketime: libfaketime modifies the system time for a single application


libfaketime安装

01.切换路径,目标路径:/usr/local

(在/usr/local路径下git clone 开源项目)

切换路径指令:

复制代码
cd /usr/local

02.拉取

复制代码
git clone https://github.com/wolfcw/libfaketime.git

eg:

复制代码
root@DESKTOP-ER8E8NH:~# cd /usr/local
root@DESKTOP-ER8E8NH:/usr/local# ls -l
total 0
drwxr-xr-x 1 root root 4096 May 30  2023 bin
drwxr-xr-x 1 root root 4096 May 30  2023 etc
drwxr-xr-x 1 root root 4096 May 30  2023 games
drwxr-xr-x 1 root root 4096 May 30  2023 include
drwxr-xr-x 1 root root 4096 May 30  2023 lib
lrwxrwxrwx 1 root root    9 May 30  2023 man -> share/man
drwxr-xr-x 1 root root 4096 May 30  2023 sbin
drwxr-xr-x 1 root root 4096 May 31  2023 share
drwxr-xr-x 1 root root 4096 May 30  2023 src
root@DESKTOP-ER8E8NH:/usr/local# git clone https://github.com/wolfcw/libfaketime.git
Cloning into 'libfaketime'...
remote: Enumerating objects: 2536, done.
remote: Counting objects: 100% (660/660), done.
remote: Compressing objects: 100% (254/254), done.
remote: Total 2536 (delta 427), reused 555 (delta 399), pack-reused 1876 (from 1)
Receiving objects: 100% (2536/2536), 839.43 KiB | 55.00 KiB/s, done.
Resolving deltas: 100% (1596/1596), done.
root@DESKTOP-ER8E8NH:/usr/local# ls -l
total 0
drwxr-xr-x 1 root root 4096 May 30  2023 bin
drwxr-xr-x 1 root root 4096 May 30  2023 etc
drwxr-xr-x 1 root root 4096 May 30  2023 games
drwxr-xr-x 1 root root 4096 May 30  2023 include
drwxr-xr-x 1 root root 4096 May 30  2023 lib
drwxr-xr-x 1 root root 4096 Oct 28 21:51 libfaketime
lrwxrwxrwx 1 root root    9 May 30  2023 man -> share/man
drwxr-xr-x 1 root root 4096 May 30  2023 sbin
drwxr-xr-x 1 root root 4096 May 31  2023 share
drwxr-xr-x 1 root root 4096 May 30  2023 src
root@DESKTOP-ER8E8NH:/usr/local#

03.切换到libfaketime路径

指令:

复制代码
cd libfaketime

04.make

指令:

复制代码
make

eg:

复制代码
root@DESKTOP-ER8E8NH:/usr/local/libfaketime (master)# make
make  -C src all
make[1]: Entering directory '/usr/local/libfaketime/src'
cc -o libfaketime.o -c -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare   libfaketime.c
cc -o libfaketime.so.1 -Wl,-soname,libfaketime.so.1  -Wl,--version-script=libfaketime.map -shared libfaketime.o -ldl -lm -lrt -lpthreadcc -o libfaketimeMT.o -c -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare  -DPTHREAD_SINGLETHREADED_TIME libfaketime.c
cc -o libfaketimeMT.so.1 -Wl,-soname,libfaketimeMT.so.1  -Wl,--version-script=libfaketime.map -shared libfaketimeMT.o -ldl -lm -lrt -lpthread
cc -o faketime -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare   faketime.c  -Wl,--version-script=libfaketime.map -lrt -lpthread
make[1]: Leaving directory '/usr/local/libfaketime/src'

05.make install

指令:

复制代码
make install

eg:

复制代码
root@DESKTOP-ER8E8NH:/usr/local/libfaketime (master)# sudo make install
make  -C src install
make[1]: Entering directory '/usr/local/libfaketime/src'

Copying the faketime libraries to /usr/local/lib/faketime and the faketime wrapper script to /usr/local/bin ...
install -dm0755 "/usr/local/lib/faketime/"
install -m0644 libfaketime.so.1 libfaketimeMT.so.1 "/usr/local/lib/faketime/"
install -Dm0755 faketime "/usr/local/bin/faketime"
make[1]: Leaving directory '/usr/local/libfaketime/src'
make  -C man install
make[1]: Entering directory '/usr/local/libfaketime/man'
install -Dm0644 faketime.1 "/usr/local/share/man/man1/faketime.1"
gzip -nf "/usr/local/share/man/man1/faketime.1"
make[1]: Leaving directory '/usr/local/libfaketime/man'
install -dm0755 "/usr/local/share/doc/faketime/"
install -m0644 README "/usr/local/share/doc/faketime/README"
install -m0644 NEWS "/usr/local/share/doc/faketime/NEWS"

libfaketime使用

修改时间

语法:

复制代码
export LD_PRELOAD=[libfaketime.so.1文件的绝对路径] FAKETIME="[@目标时间]"

eg:

复制代码
export LD_PRELOAD=/usr/local/libfaketime/src/libfaketime.so.1 FAKETIME="@2024-06-04 00:00:01"

同步时间

语法:

复制代码
export LD_PRELOAD=/usr/local/libfaketime/src/libfaketime.so.1 FAKETIME= date
相关推荐
HLC++11 小时前
Linux的进程间通信
android·linux·服务器
华清远见IT开放实验室13 小时前
实验室建设案例 | 石家庄科技信息职业学院嵌入式实验室——从底层硬件到系统应用,一所应用型高校的嵌入式人才培养这样落地
linux·arm开发·stm32·嵌入式硬件·高校·实验室建设
groundhappy15 小时前
idalib安装和codex ida-mcp配置
linux·开发语言·python
通信小小昕16 小时前
Ubuntu 26.04 中文输入法安装
linux·运维·ubuntu
张小姐的猫17 小时前
【Linux】网络编程 —— HTTP协议(上)
linux·运维·服务器·网络·http·单例模式·策略模式
栩栩云生17 小时前
AI 写代码犯的错,早被写进了错题集
linux·安全·ai编程
imc.1119 小时前
linux基础IO
linux·运维·服务器
BelongPanda20 小时前
Linux Nginx 纯手动 Let‘s Encrypt 泛域名证书配置教程
linux·nginx
酷可达拉斯21 小时前
Linux操作系统-shell编程(0)
linux·运维·服务器·python·云计算
2301_7779983421 小时前
Linux中断机制:操作系统如何高效运行
linux·运维·服务器