can ping the network"If there's nothing else behind this line, it means you're on the Internet.Troubleshooting Network problems:Can not ping the outside network after the change, change the network mode,If NAT mode is changed to bridging mode, and vice versa.If you change the network mode to find or not ping,Use the Dhclient command to re-obtain the IP address, if you cannot ping theRecheck the network configuration file with the VI editor.#vi/etc/sysconfig/network-scripts/ifcfg-ens33 "NIC conf
Name: Danny Date:2017/12/2
task date
lectures
Programming program
Read the textbook
prepare for exam
exam
daily statistics
Sunday
Monday
30
NBSP;
120
150
Tues
1. TopicsOld boy Education Daily-May 12, 2017-disk knowledge point: How to Implement LVM configuration in Linux system?2. Refer to answer 01: Create one or more physical partitions as a PV#pvcreate/dev/sdb{1,2}physicalvolume "/DEV/SDB1" successfullycreatedphysical volume "/DEV/SDB2" successfullycreated#pvs #02:VG configuration (assuming the creation of a 2G VG, i.e. two 1G of PV)# vgcreate myvg/dev/sdb{1,2}
implements the comparator interface, overriding the Compare method. and passes the subclass object of the interface as a parameter to the constructor of the TreeSet collection.When comparable comparison way, and comparator comparison way exist simultaneously, take comparator comparison mode as main.6, the way to traverse the map:All keys in the map collection are fetched into the set set.SetThe value corresponding to the key is obtained by the Get method.VALUES () to get all the values.Collecti
Most AWT components have their own equivalent components of swing.
The name of the swing component is typically a letter "J" in front of the AWT component name, such as Jbutton,jframe,jpanel.
Third , object-oriented program design course study progress bar
Moonphases
Number of lines of code (read/write)
Post Blog volume/Comment blog number
Classroom/after-school time (hours)
The most satisfying programming task
First week
20
of the application system. The old version has no users table space. The user table space is now users. 5. Data and Index Table space: The table space for data and index, Oracle7 is advocated in the application system, especially with a large number of data systems, to separate the data and indexes in different partitions, in order to improve the query speed. The index table space may be indx after installation. The data table space is the users. 6. Rollback segment Tablespace (Rollback Segment
MySQL Flip-flopFormat: 1, trigger definition:CREATE TRIGGER trigger_name trigger_time trigger_eventOn tbl_name for each ROW trigger_stmtDescription# Trigger_name: Trigger Name# Trigger_time: Trigger time, desirable value: before or after# Trigger_event: Trigger event, desirable value: INSERT, update, or delete.# Tb1_name: Specify on which table# trigger_stmt: Triggers the processing of SQL statements.Example:Mysql> delimiter $$Mysql> CREATE trigger Del_stu before delete on Stu for each rowBeginI
the course table, where two tables have COURSE.CNO=SCORE.CNO connections -- use a table with more data to query the main table, where score is the main table Second, aggregate function 1, Max,min: Take maximum value, minimum value --inquire about the car with the lowest fuel consumption SELECT * FROM car where oil= (select max (oil) from car) 2, Avg: Averaging --Check the average price of the car Where as is used to alias 3, Count: Take the total number --Find out how many cars there are. i
specified by DatePart. DATEPART (dd, date) is equivalent to day (date) DATEPART (mm, date) equals month (date) DATEPART (yy, date) is equivalent to year (date) · GETDATE () The GETDATE () function syntax is as follows: GETDATE () The GETDATE () function returns the current date and time of the system in the default format of DateTime, which is often used as a parameter to other functions or commands Number of uses. Instance: 1. Get the average between two dates Select DATEADD (Dd,datediff (Day
12 form elements can be divided into three main categoriesFirst Class: Text class" text " /> // plain text box "password"// password text box " Hidden " // Hidden Fields // Variable text boxType II: Button class" Button " // Normal button " Reset " // Reset button // The following two can be used to submit data to the database " Submit " // Submit Button " Image " // Picture ButtonClass III: SELECT Class" Radio " // radio Button " checkbox " // Check
HTML block1.HTML block ElementFast elements are typically started with new lines when they are displayedsuch as:2.HTML inline elementsInline elements typically do not start with a new linesuch as:3.htmlThe 4.htmlThe DOCTYPE HTML>HTML>Head> MetaCharSet= ' Utf-8 '> title>HTML blocktitle> Metaname= ' keyword 'content= ' html block '> Linkrel= ' stylesheet 'type= ' Text/css 'href= ' Mystyle.css '> External References - style>{Color:Pink; }#divspan span{Color:Green; }
is dabbler, there is no real skills. Mixed with the fear of future hardware, I think it is necessary to refuel in private to learn about Linux embedded development.
Learning Linux embedded development, a very big project, a little start-up, fortunately, the online material is very rich, want to learn to have small into should be easier, first set a small goal, every day to write a blog, the study of Linux to describe a little progress, do a study note.
I know today.
1, t
This week's lab class learned about graphic programming, from framing to specific graphic printing, font settings, and other modifications to the framework. Through this week's program experiment I summed up the knowledge points:The 1.setSize method is inherited by the parent class component Class (the ancestor of the GUI object).2.pack () Call the preferred size of the framework component, or we can replace it with the SetSize methodThe 3.Swing class library is placed in the javax.swing package
) statements, Sequential writes, and automatic switching after full write. Only archive mode can recover data, and non-archive mode can only restore current data.----View Redo log file informationArchive log list;Select * from V$log;----switch access to physical files (not used in normal work)Alter system Switch Logfiel;Select * from V$logfile;----adding redo log filesLinux:alter database Add logfile '/database/. /redolog09.rdo ' size 2g autoextend off;Windows:alter Database Add Logfie(' g:oracl
an optional buffer. It can be configured with administrative authority as needed. It can provide a large area for the object database backup and recovery operations.Program Global: (PGA) is an area of memory used by Oracle, which can only be stored by one process at a time for data and control, for storing session variables and internal arrays, etc., in private service mode (dedicated server configuration), Each request that processes only one user process. Under Shared server configuration, a
CHAR: Delimited by the specified character, or, if not, by default, blank as delimiter,-F fileds: Selected field, #: Multiple fields specified, #-#: Multiple fields in succession, #,#: discrete multiple fields;The sort command is a sorted command, which is a line of sorted text files with the following command format:Sort [OPTIONS] ... [FILE] ...The options for this command are:-N: Sort based on numeric size instead of characters;-T CHAR: Specifies delimiter;-k#: The character used for sorting
the pattern between the second opening parenthesis and the closing parenthesis that matches it, starting from the left side;??? \3: The character to match the pattern between the third opening parenthesis and the closing parenthesis that matches it, starting from the left side;??? ...?? Let's take a look at the example:??? He?likes?his?lover.??? He?loves?his?lover.??? She?likes?her?liker.??? She?lovers?her?liker.??? #?grep? " \ (L.. e\). *\1 "? Lover.txt?? And this is the back reference, the ba
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.