/l3/users/My-Debian-Work/adm.prombez/ol14 :1 :2 :3 :4 :5 :6 :7 :8 :9 :10 :11 :12 :13 :14 :15 :16 :17 :18 :19 :20 :21 :22 :23 :24 |
$mysql -uroot localhost
![]() ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) |
$mysql localhost -uroot -p
![]() Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$mysql -hlocalhost -uroot -p
![]() Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$mysql -hlocalhost -uroot -p
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 370 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREAT Тntddb -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREAT ntddb' at line 1 mysql> ; ERROR: ... -> -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 2 mysql> CREATE TABLE razrab ( id_razrab INT(3) NOT NULL PRIMARY KEY, -> name_razrab TEXT -> ) -> ; Query OK, 0 rows affected (0.02 sec) mysql> quit Bye |
$mysqldump -u root ntddb > ntddb.sql
![]() mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: NO) when trying to connect |
$mysqldump -u root -p ntddb > ntddb.sql
Enter password: |
$ls ~ nt*
ntddb.sql /home/ol14: 1.run LPI-101-моя доработка.odt 1x1.png ntddb.sql 2010-08-24-10-16-33.065-VirtualBox-7488.log NVIDIA-Linux-x86-256.53.run 2010-09-01-07-35-48.023-VirtualBox-9244.log ol 2010-09-01-07-52-59.016-VirtualBox-9359.log pxelinix.0 2010-09-01-08-09-56.067-VirtualBox-9479.log pxelinux.0 245.pdf ru_RU.UTF-8 245.ps sample1.blend ... dic.txt www documents выбор компа.ods DOWNLOAD выбор компа.xls DOWNLOAD_TORRENT выбор компа мартьянову.ods hs_err_pid30277.log Настройки 7.odt Kaspersky Internet Security 2011 новый файл Kaspersky Internet Security 2011.zip новый файл~ license-Windows7x32.iso новый файл 1 lilalo новый файл 1~ LPI-101-моя доработка.doc |
$ls ntddb.sql
ntddb.sql |
$cat ntddb.sql
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-03-14 7:38:50 |
$mysqldump -h localhost -u root -p ntddb > ntddb.sql
Enter password: |
$mysqldump -h localhost -u root -p ocsweb > ntddb.sql
Enter password: |
$mysqldump -h localhost -u root -p ntddb > ntddb.sql
Enter password: |
$mysqldump -h localhost -u root -p ntddb > ntddb.sql
Enter password: mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when trying to connect |
$Ñmc
<â ~ v>â~/www ââ v> â/.. â-ÐÐÐРХ-â /.. â-ÐÐÐРХ-â â´ â/.adobe â 4096âÐÑн 25/inv â 4096âÐÑн 22 2010 â 25 2010 â â/.bleer âââââââââââââââââââ Midnight Commander âââââââââââââââââââ âââââââ â/.cong â â Ñ 14 13:17 ½ 9 8 11:05 â â/.dbu ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ âââ â/.evolution â 4096âФев 14 â â â010 µÐ² 14 17:31 â â/.fontconfig â 4096âÐек 7 â â â010 µÐº 7 14:49 â â/.fr-JCIfFv â 4096âÐÑн 16 â â â:50 â 16 2010 â â/.. /ntd â СовеÑ: ÐÑ Ð¼Ð¾Ð¶ÐµÑе оÑмениÑÑ Ð·Ð°Ð¿ÑоÑÑ Ð½Ð° подÑвеÑждение в ÐаÑÑÑойки/ÐодÑвеÑждение. |
$vi ntddb.sql
|
$B
SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -- INSERT -- CREATE TABLE `razrab` ( -- INSERT -- `id_razrab` int(3) NOT NULL, -- INSERT -- `name_razrab` text, -- INSERT -- -- INSERT -- PRIMARY KEY (`id_razrab`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- INSERT -- `id_razrab` int(3) NOT NULL AUTO_INCREMENT, SET character_set_client = @saved_cs_client; -- INSERT -- "ntddb.sql" 50L, 1765C written |
$mysqldump -h localhost -u root -p ntddb > ntddb1.sql
Enter password: |
$mysqldump -h localhost -u root -p ntddb < ntddb.sql
![]() Enter password: mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when trying to connect |
$mysqldump -h localhost -u root -p ntddb < ntddb.sql
Enter password: -- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-03-15 8:11:12 |
$mysqldump -h localhost -u root -p ntddb < ntddb.sql
![]() Enter password: mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when trying to connect |
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 551 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show tables -> ; +-----------------+ ... -> : -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ':' at line 2 mysql> drop table razrab ; Query OK, 0 rows affected (0.02 sec) mysql> show tables -> ; Empty set (0.00 sec) mysql> quit Bye |
$mysql -h localhost -u root -p ntddb
![]() Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$mysqldump -h localhost -u root -p ntddb < ntddb.sql
Enter password: -- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; ... /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-03-15 8:34:30 |
$mysql -h localhost -u root -p ntddb
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 559 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show tables -> ; Empty set (0.00 sec) mysql> show tables; Empty set (0.00 sec) ... show tables; Y, nameCREATE TABLE razrab ( id_razrab INT(3) NOT NULL AUTO_INCREMENT PRIMARY KEY +-----------------+ | Tables_in_ntddb | +-----------------+ | razrab | +-----------------+ 1 row in set (0.00 sec) mysql> quit Bye |
$cat ntddb22.sql
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-03-15 8:46:29 |
$mysqldump -h localhost -u root -p ntddb > ntddb23.sql
Enter password: |
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 195 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show variables like "%character%";show variables like "%collation%"; +--------------------------+----------------------------+ | Variable_name | Value | ... +----------------------+-------------------+ | Variable_name | Value | +----------------------+-------------------+ | collation_connection | latin1_swedish_ci | | collation_database | utf8_general_ci | | collation_server | latin1_swedish_ci | +----------------------+-------------------+ 3 rows in set (0.00 sec) mysql> quit Bye |
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 189 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show variables like "%character%";show variables like "%collation%"; +--------------------------+----------------------------+ | Variable_name | Value | ... +----------------------+-------------------+ | Variable_name | Value | +----------------------+-------------------+ | collation_connection | utf8_general_ci | | collation_database | utf8_general_ci | | collation_server | latin1_swedish_ci | +----------------------+-------------------+ 3 rows in set (0.00 sec) mysql> quit Bye |
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 186 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show variables like "%character%";show variables like "%collation%"; +--------------------------+----------------------------+ | Variable_name | Value | ... | collation_server | utf8_general_ci | +----------------------+-----------------+ 3 rows in set (0.00 sec) ab TEXTshow tables; ab TEXT; ERROR: No query specified ; TEXT )quit Bye |
$mysql -h localhost -u root -p
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 321 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> drop base ntddb -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'base ntddb' at line 1 mysql> drop bases ntddb; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'bases ntddb' at line 1 mysql> drop database ntddb; Query OK, 3 rows affected (0.02 sec) mysql> CREATE DATABASE ntddb DEFAULT CHARACTER SET utf8; Query OK, 1 row affected (0.00 sec) mysql> quit Bye |
$mysql -h localhost -u root -p ntddb
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 322 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE TABLE razrab ( -> glpi mysql ocsweb information_schema ntddb -> ... glpi information_schema mysql ntddb ocsweb -> glpi information_schema mysql ntddb ocsweb -> PRIMARY KEY (id_type_doc) ) ENGINE=MyISAM DEFAULT CHARACTER SET utf8; Query OK, 0 rows affected (0.00 sec) mysql> qiuit -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'qiuit' at line 1 mysql> quit Bye |
$cat ntddb_forutf8.sql
|
$mysql -h localhost -u root -p ntddb
![]() Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$mysql -h localhost -u root -p ntddb
![]() Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$rdesktop -uol14 -p13r@7t -g1024x768 -a16 -k en-us.fixed 192.168.0.200
^[[AWARNING: No translation for (keysym 0x40, at) |
$ping 192.168.0.1
PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data. 64 bytes from 192.168.0.1: icmp_seq=1 ttl=128 time=0.400 ms 64 bytes from 192.168.0.1: icmp_seq=2 ttl=128 time=0.455 ms 64 bytes from 192.168.0.1: icmp_seq=3 ttl=128 time=0.402 ms 64 bytes from 192.168.0.1: icmp_seq=4 ttl=128 time=0.391 ms ^C --- 192.168.0.1 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3000ms rtt min/avg/max/mdev = 0.391/0.412/0.455/0.025 ms |
$su
![]() mysql -h localhost -u root -p ntddb Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) |
$zal56&1
![]() [1] 24405 bash: zal56: команда не найдена bash: 1: команда не найдена [1]+ Exit 127 zal56 |
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. ate_begin link_doc docntd long_name_docntd docntd.date_begin mysql docntd.id_docntd name_key_wordso clear the buffer. docntd.id_key_words name_razrab docntd.id_razrab name_status_doc ... mysql> DELETE FROM users; Query OK, 0 rows affected (0.00 sec) mysql> DROP FROM users; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM users' at line 1 mysql> DROPE FROM users; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROPE FROM users' at line 1 mysql> DROP users; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'users' at line 1 mysql> DROP users; [1]+ Stopped mysql -h localhost -u root -p ntddb |
$mc
|
$-h localhost -u root -p ntddb
![]() 200 rdesktop -uol14 -p13r@7t -g1024x768 -a16 -k en-us.fixed 192.168.0.2 |
$su
![]() Пароль: su: Сбой при проверке подлинности |
$su
|
$mysql -h localhost -u root -p ntddb
Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 249 Server version: 5.0.51a-24+lenny5 (Debian) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show tables -> ; +-----------------+ ... | ytv_doc | +-----------------+ 7 rows in set (0.00 sec) mysql> delete from docntd; Query OK, 10 rows affected (0.00 sec) mysql> bay -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'bay' at line 1 mysql> quit Bye |
$mysqldump -h localhost -u root -p12qw#12qw ntddb</home/ol14/ntddb_utf8_04_04_2011.sql
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-04-04 4:54:52 |
$mysqldump -h localhost -u root -p12qw#12qw ntddb</home/ol14/ntddb_utf8_01_04_2011.sql
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-04-04 4:55:33 |
$mysqldump -h localhost -u root -p12qw#12qw ntddb</home/ol14/ntddb_utf8_01_04_2011.sql;
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-04-04 4:56:32 |
$mysqldump -h localhost -u root -p12qw#12qw ntddb</home/ol14/11.sql;
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; ... UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-04-04 5:08:41 |
$c
![]() 200 rdesktop -uol14 -p13r@7t -g1024x768 -a16 -k en-us.fixed 192.168.0.2 WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2e, period) WARNING: No translation for (keysym 0x2f, slash) WARNING: No translation for (keysym 0x2f, slash) WARNING: No translation for (keysym 0xfe0a, ISO_Prev_Group) WARNING: No translation for (keysym 0x6c7, Cyrillic_ghe) WARNING: No translation for (keysym 0x6c7, Cyrillic_ghe) WARNING: No translation for (keysym 0x6cf, Cyrillic_o) WARNING: No translation for (keysym 0x6cf, Cyrillic_o) |
$mysqldump -h localhost -u root -p12qw#12qw ntddb > /home/ol14/05_04_2011.sql
|
$mc
|
$su
![]() |
$su
|
$aptitude install avrora
![]() Чтение списков пакетов... Готово Построение дерева зависимостей Чтение информации о состоянии... Готово Чтение информации о расширенных состояниях Инициализация состояний пакетов... Готово Чтение описаний задач... Готово E: Не удалось открыть файл блокировки /var/lib/dpkg/lock - open (13 Отказано в доступе) E: Unable to lock the administration directory (/var/lib/dpkg/), are you root? |
$su
![]() |
$su
|
$ol14 -p13r@7t -g1024x768 -a16 -k en-us.fixed 192.168.0.200
![]() WARNING: No translation for (keysym 0x6e4, Cyrillic_DE) WARNING: No translation for (keysym 0x6e4, Cyrillic_DE) WARNING: No translation for (keysym 0x6cb, Cyrillic_ka) WARNING: No translation for (keysym 0x6cb, Cyrillic_ka) WARNING: No translation for (keysym 0x6d5, Cyrillic_u) WARNING: No translation for (keysym 0x6d5, Cyrillic_u) WARNING: No translation for (keysym 0x6cd, Cyrillic_em) WARNING: No translation for (keysym 0x6cd, Cyrillic_em) WARNING: No translation for (keysym 0x6c5, Cyrillic_ie) WARNING: No translation for (keysym 0x6c5, Cyrillic_ie) WARNING: No translation for (keysym 0x6ce, Cyrillic_en) WARNING: No translation for (keysym 0x6ce, Cyrillic_en) WARNING: No translation for (keysym 0x6d4, Cyrillic_te) WARNING: No translation for (keysym 0x6d4, Cyrillic_te) ERROR: recv: Соединение сброшено другой стороной |
$su
|
$cat /etc/apt/sources.list
# # deb cdrom:[Debian GNU/Linux 5.0.2a _Lenny_ - Official i386 DVD Binary-1 20090817-00:51]/ lenny contrib main # deb cdrom:[Debian GNU/Linux 5.0.2a _Lenny_ - Official i386 DVD Binary-1 20090817-00:51]/ lenny contrib main # deb http://ftp.ru.debian.org/debian/ lenny main non-free # deb-src http://ftp.ru.debian.org/debian/ lenny main non-free deb http://security.debian.org/ lenny/updates main non-free contrib deb-src http://security.debian.org/ lenny/updates main non-free contrib deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib deb-src http://volatile.debian.org/debian-volatile lenny/volatile main contrib deb http://ftp.de.debian.org/debian/ lenny main non-free contrib ... deb-src http://download.videolan.org/pub/videolan/debian sarge main #virtual box deb http://download.virtualbox.org/virtualbox/debian lenny non-free #for cups capt driver deb http://debian.are-ata.org/ all main deb-src http://debian.are-ata.org/ all main #for ssh menu deb http://sshmenu.sourceforge.net/debian stable contrib ##Redsolution 2GIS repository for Debian Lenny deb http://packages.redsolution.ru/2gis lenny non-free |
$ps -ax |grep java
Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html 20491 ? Sl 0:22 /usr/lib/opera//operapluginwrapper 50 53 /usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libnpjp2.so 20505 ? Sl 0:10 /usr/lib/jvm/java-6-sun-1.6.0.22/jre/bin/java -D__jvm_launched=14756767967 -Xbootclasspath/a:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/deploy.jar:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/javaws.jar:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/plugin.jar -Djava.class.path=/usr/lib/jvm/java-6-sun-1.6.0.22/jre/classes -Dsun.awt.warmup=true sun.plugin2.main.client.PluginMain writ 21350 pts/1 S+ 0:00 grep java |
$ps |grep java
![]() |
$ps
PID TTY TIME CMD 21315 pts/1 00:00:00 bash 21368 pts/1 00:00:00 ps |
$ps -a
PID TTY TIME CMD 21314 pts/0 00:00:00 script 21376 pts/1 00:00:00 ps |
$ps -ax
Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html PID TTY STAT TIME COMMAND 1 ? Ss 0:01 init [2] 2 ? S< 0:00 [kthreadd] 3 ? S< 0:00 [migration/0] 4 ? S< 4:00 [ksoftirqd/0] 5 ? S< 0:00 [watchdog/0] 6 ? S< 0:00 [migration/1] 7 ? S< 2:41 [ksoftirqd/1] 8 ? S< 0:00 [watchdog/1] ... 12189 ? RLl 95:22 /usr/lib/virtualbox/VirtualBox --comment win --startv 15559 ? S 0:00 /usr/sbin/apache2 -k start 20491 ? Sl 0:45 /usr/lib/opera//operapluginwrapper 50 53 /usr/lib/jvm 20505 ? Sl 0:10 /usr/lib/jvm/java-6-sun-1.6.0.22/jre/bin/java -D__jvm 21268 ? Sl 0:00 gnome-terminal 21271 ? S 0:00 gnome-pty-helper 21272 pts/0 Ss+ 0:00 script -f -c bash -q /home/ol14/.lilalo//162003820080 21314 pts/0 R+ 0:00 script -f -c bash -q /home/ol14/.lilalo//162003820080 21315 pts/1 Ss 0:00 bash 21384 pts/1 R+ 0:00 ps -ax |
$mysql -h localhost -u root -p12qw#12qw ntddb
![]() |
$su
|
$ping ya.ru
![]() PING ya.ru (87.250.251.3) 56(84) bytes of data. ^X^Z [1]+ Stopped ping ya.ru |
$mysql -h localhost -u root -p12qw#12qw ntddb
![]() |
$ifconfig -a
![]() bash: ifconfig: команда не найдена |
$ifconf -a
![]() bash: ifconf: команда не найдена |
$ifconfig eth0
![]() bash: ifconfig: команда не найдена |
$ping ya.ru
![]() |
$mysql -h localhost -u root -p12qw#12qw ntddb
![]() 206 rdesktop -uol14 -p13r@7t -g1024x768 -a16 -k en-us.fixed 192.168.0.2 |
# # deb cdrom:[Debian GNU/Linux 5.0.2a _Lenny_ - Official i386 DVD Binary-1 20090817-00:51]/ lenny contrib main # deb cdrom:[Debian GNU/Linux 5.0.2a _Lenny_ - Official i386 DVD Binary-1 20090817-00:51]/ lenny contrib main # deb http://ftp.ru.debian.org/debian/ lenny main non-free # deb-src http://ftp.ru.debian.org/debian/ lenny main non-free deb http://security.debian.org/ lenny/updates main non-free contrib deb-src http://security.debian.org/ lenny/updates main non-free contrib deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib deb-src http://volatile.debian.org/debian-volatile lenny/volatile main contrib deb http://ftp.de.debian.org/debian/ lenny main non-free contrib deb-src http://ftp.de.debian.org/debian/ lenny main non-free contrib #Yandex # deb mirror.yandex.ru/debian/ lenny main # deb mirror.yandex.ru/debian/ lenny contrib non-free # deb-src mirror.yandex.ru/debian/ lenny main # deb-src mirror.yandex.ru/debian/ lenny contrib non-free # Backports deb http://www.backports.org/debian lenny-backports main contrib non-free deb http://mirror.yandex.ru/backports.org/ lenny-backports main contrib non-free # Репозиторий программ от google deb http://dl.google.com/linux/deb/ lenny non-free # Репозиторий с virtualbox #deb http://download.virtualbox.org/virtualbox/debian lenny non-free deb http://download.virtualbox.org/virtualbox/debian lenny contrib # Skype deb http://download.skype.com/linux/repos/debian/ stable non-free # Тут: acroread, acidrip flashplayer-mozilla realplayer w32codecs # Ключ: wget http://debian-multimedia.org/gpgkey.pub -O - | apt-key add - deb http://www.debian-multimedia.org lenny main # Opera. Ключ: wget http://deb.opera.com/archive.key -O - | apt-key add - deb http://deb.opera.com/opera/ lenny non-free deb http://download.videolan.org/pub/videolan/debian sarge main deb-src http://download.videolan.org/pub/videolan/debian sarge main #virtual box deb http://download.virtualbox.org/virtualbox/debian lenny non-free #for cups capt driver deb http://debian.are-ata.org/ all main deb-src http://debian.are-ata.org/ all main #for ssh menu deb http://sshmenu.sourceforge.net/debian stable contrib ##Redsolution 2GIS repository for Debian Lenny deb http://packages.redsolution.ru/2gis lenny non-free
-- MySQL dump 10.11 -- -- Host: localhost Database: ntddb -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREI