Anons79 Mini Shell

Directory : /var/lib/dnf/
Upload File :
Current File : //var/lib/dnf/history.sqlite

SQLite format 3@  v#v-�)������

&4h��&y
gg#	f��f��1865:7203acab441e6a150927fc8ba3b2898c30048e3d1866:6f39e53edac30c51b7b72d126a9c5b572f1a5fa67�install npm|
gg)	ff1864:97b64bbace60b3e3f177f502be43d54586c599691865:7203acab441e6a150927fc8ba3b2898c30048e3d7�install nodejs{
gg'	ff��1857:5d9b7807bde613ed26fe65b5e14dd23a632e0f8f1854:8c196752bc4f3273b425afad9b6a71cb592787d27�remove nodejs�Igg�C	d�f�d�f�1676:f142d7d9cd427421b256a02f8f1a4af8cc5b32cc1685:5e0f5217832d146056795ad4334ade43b8ea055d7install MariaDB-server galera-4 MariaDB-client MariaDB-shared MariaDB-backup MariaDB-common�Igg�C	d�S�d�S�1685:a5f221310552e9a1874aad7aef02890ed2a855fe1686:a8b9e4c22a94cce9462ff0ba388e682ae4f1978b7install MariaDB-server galera-4 MariaDB-client MariaDB-shared MariaDB-backup MariaDB-common�Igg�C	d�s�d�s�1690:44500d3ff7e3380e510f7879f50f8d7c72b8c0c31694:2b3e85693779b0ff6f26a937bbb7504830650f0c7install MariaDB-server galera-4 MariaDB-client MariaDB-shared MariaDB-backup MariaDB-common
���	trans!trans_item
������epel
@Systembase
!MariaDB106
mariadb�#�"
��f�u�ItabletranstransCREATE TABLE trans (
        id INTEGER PRIMARY KEY AUTOINCREMENT,
        dt_begin INTEGER NOT NULL,      /* (unix timestamp) date and time of transaction begin */
        dt_end INTEGER,                 /* (unix timestamp) date and time of transaction end */
        rpmdb_version_begin TEXT,
        rpmdb_version_end TEXT,
        releasever TEXT NOT NULL,       /* var: $releasever */
        user_id INTEGER NOT NULL,       /* user ID (UID) */
        cmdline TEXT,                   /* recorded command line (program, options, arguments) */
        state INTEGER NOT NULL          /* (enum) */
    )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)��tablereporepoCREATE TABLE repo (
        id INTEGER PRIMARY KEY,
        repoid TEXT NOT NULL            /* repository ID aka 'repoid' */
    )
ppu�))�?tableconsole_outputconsole_outputCREATE TABLE console_output (
        id INTEGER PRIMARY KEY,
        trans_id INTEGER REFERENCES trans(id),
        file_descriptor INTEGER NOT NULL,       /* stdout: 1, stderr : 2 */
        line TEXT NOT NULL
    )�'�1tableitemitemCREATE TABLE item (
        id INTEGER PRIMARY KEY,
        item_type INTEGER NOT NULL              /* (enum) 1: rpm, 2: group, 3: env ...*/
    )�^!!�tabletrans_itemtrans_item	CREATE TABLE trans_item (
        id INTEGER PRIMARY KEY AUTOINCREMENT,
        trans_id INTEGER REFERENCES trans(id),
        item_id INTEGER REFERENCES item(id),
        repo_id INTEGER REFERENCES repo(id),
        action INTEGER NOT NULL,                                /* (enum) */
        reason INTEGER NOT NULL,                                /* (enum) */
        state INTEGER NOT NULL                                  /* (enum) */
    )
�������������
	
����������rdWJ;-				
				
	
				
							
																
				
				
										


44r���;--�)tableitem_replaced_byitem_replaced_by
CREATE TABLE item_replaced_by (              /* M:N relationship between transaction items */
        trans_item_id INTEGER REFERENCES trans_item(id),
        by_trans_item_id INTEGER REFERENCES trans_item(id),
        PRIMARY KEY (trans_item_id, by_trans_item_id)
    )?S-indexsqlite_autoindex_item_replaced_by_1item_replaced_by�	!!�utabletrans_withtrans_with
CREATE TABLE trans_with (
        id INTEGER PRIMARY KEY AUTOINCREMENT,
        trans_id INTEGER REFERENCES trans(id),
        item_id INTEGER REFERENCES item(id),
        CONSTRAINT trans_with_unique_trans_item UNIQUE (trans_id, item_id)
    )3
G!indexsqlite_autoindex_trans_with_1trans_with


���n=���lJ%�&	+npm8.19.41.16.20.2.1.el7x86_64##nodejs-less4.1.21.el7noarch 
	
nodejs16.20.21.el7x86_64		socat1.7.3.22.el7x86_64!libpmem1.5.12.1.el7x86_64)%galera-426.4.141.el7.centosx86_64/)%MariaDB-compat10.6.141.el7.centosx86_64/)%MariaDB-common10.6.141.el7.centosx86_64/)%MariaDB-shared10.6.141.el7.centosx86_64/)%MariaDB-server10.6.141.el7.centosx86_64/)%MariaDB-client10.6.141.el7.centosx86_64.	)%MariaDB-backup10.6.141.el7.centosx86_64
�������������

				
	���qA��T0	u&	+npm8.19.41.16.20.2.1.el7x86_64##nodejs-less4.1.21.el7noarch 	nodejs16.20.21.el7x86_64
socat1.7.3.22.el7x86_64	!libpmem1.5.12.1.el7x86_64)%galera-426.4.141.el7.centosx86_64/)%MariaDB-compat10.6.141.el7.centosx86_64/)%MariaDB-common10.6.141.el7.centosx86_64/)%MariaDB-shared10.6.141.el7.centosx86_64/)%MariaDB-server10.6.141.el7.centosx86_64/)%MariaDB-client10.6.141.el7.centosx86_64.)%	MariaDB-backup10.6.141.el7.centosx86_64
��U|����#tablerpmrpmCREATE TABLE rpm (
        item_id INTEGER UNIQUE NOT NULL,
        name TEXT NOT NULL,
        epoch INTEGER NOT NULL,                 /* empty epoch is stored as 0 */
        version TEXT NOT NULL,
        release TEXT NOT NULL,
        arch TEXT NOT NULL,
        FOREIGN KEY(item_id) REFERENCES item(id),
        CONSTRAINT rpm_unique_nevra UNIQUE (name, epoch, version, release, arch)
    )%9indexsqlite_autoindex_rpm_1rpm%
9indexsqlite_autoindex_rpm_2rpm�###�
tablecomps_groupcomps_groupCREATE TABLE comps_group (
        item_id INTEGER UNIQUE NOT NULL,
        groupid TEXT NOT NULL,
        name TEXT NOT NULL,
        translated_name TEXT NOT NULL,
        pkg_types INTEGER NOT NULL,
        FOREIGN KEY(item_id) REFERENCES item(id)
    )5I#indexsqlite_autoindex_comps_group_1comps_group




��8��33�Ytablecomps_group_packagecomps_group_packageCREATE TABLE comps_group_package (
        id INTEGER PRIMARY KEY AUTOINCREMENT,
        group_id INTEGER NOT NULL,
        name TEXT NOT NULL,
        installed INTEGER NOT NULL,
        pkg_type INTEGER NOT NULL,
        FOREIGN KEY(group_id) REFERENCES comps_group(item_id),
        CONSTRAINT comps_group_package_unique_name UNIQUE (group_id, name)
    )EY3indexsqlite_autoindex_comps_group_package_1comps_group_package�;//�%tablecomps_environmentcomps_environmentCREATE TABLE comps_environment (
        item_id INTEGER UNIQUE NOT NULL,
        environmentid TEXT NOT NULL,
        name TEXT NOT NULL,
        translated_name TEXT NOT NULL,
        pkg_types INTEGER NOT NULL,
        FOREIGN KEY(item_id) REFERENCES item(id)
    )AU/indexsqlite_autoindex_comps_environment_1comps_environment




GGe�c��L;;�/tablecomps_environment_groupcomps_environment_groupCREATE TABLE comps_environment_group (
        id INTEGER PRIMARY KEY AUTOINCREMENT,
        environment_id INTEGER NOT NULL,
        groupid TEXT NOT NULL,
        installed INTEGER NOT NULL,
        group_type INTEGER NOT NULL,
        FOREIGN KEY(environment_id) REFERENCES comps_environment(item_id),
        CONSTRAINT comps_environment_group_unique_groupid UNIQUE (environment_id, groupid)
    )Ma;indexsqlite_autoindex_comps_environment_group_1comps_environment_group9Qindexrpm_namerpmCREATE INDEX rpm_name ON rpm(name)a3!}indextrans_item_trans_idtrans_itemCREATE INDEX trans_item_trans_id ON trans_item(trans_id)^1!yindextrans_item_item_idtrans_itemCREATE INDEX trans_item_item_id ON trans_item(item_id)n�7tableconfigconfig CREATE TABLE config (
        key TEXT PRIMARY KEY,
        value TEXT NOT NULL
    )+?indexsqlite_autoindex_config_1config!
I�������vaQIlnpm#nodejs-less
nodejs
	socat	libpmemgalera-4)MariaDB-compat)MariaDB-common)MariaDB-shared)MariaDB-server)MariaDB-client)	MariaDB-backup
��������������������

						
��������������������

	

					
��
version1.1
��
	version
K����;��s%����C<������KA	�One is root@localhost, it has no password, but you need to.	]Two all-privilege accounts were created.	
	
		
&		Ohttps://mariadb.org/get-involved/=		}Consider joining MariaDB's strong and vibrant community:		
P		�!The latest information about MariaDB is available at https://mariadb.org/.		
;
		yPlease report any problems at https://mariadb.org/jira		
<		{See the MariaDB Knowledgebase at https://mariadb.com/kb
		
L			�able to connect as any of these users with a password and without sudoH		�After connecting you can set the password, if you would need to be7		qyou need to be the system 'mysql' user to connect.C		�The second is mysql@localhost, it has no password either, butD		�	be system 'root' user to connect. Use, for example, sudo mysql@		�One is root@localhost, it has no password, but you need to-		]Two all-privilege accounts were created.		
		

>�s9���XP
��oF>&	
'%	Ohttps://mariadb.org/get-involved/>$	}Consider joining MariaDB's strong and vibrant community:#	
Q"	�!The latest information about MariaDB is available at https://mariadb.org/.!	
< 	yPlease report any problems at https://mariadb.org/jira	
=	{See the MariaDB Knowledgebase at https://mariadb.com/kb	
M	�able to connect as any of these users with a password and without sudoI	�After connecting you can set the password, if you would need to be8	qyou need to be the system 'mysql' user to connect.D	�The second is mysql@localhost, it has no password either, butE	�	be system 'root' user to connect. Use, for example, sudo mysql

Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]